如何将PHP路径http://127.0.0.1.81改成80
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将PHP路径http://127.0.0.1.81改成80相关的知识,希望对你有一定的参考价值。
图的路径出错了 怎么改回来啊
这个在后台代码里面修改啊,前台是改不了吧,而且刷新就没了,拉出代码,搜索一下这段代码,然后把端口改了就行,而且,80端口是可以不写的,直接http://127.0.0.1/xx/xx/xx.jgp就行了 参考技术A 图片的路径采取相对路径就可以了 为什么要用绝对路径呢追问应该是去哪儿改啊
参考技术B 为什么不用相对路径呢?追问咋个改啊!!
如何打印当前 URL 路径?
【中文标题】如何打印当前 URL 路径?【英文标题】:How to print current URL path? 【发布时间】:2013-02-01 12:06:57 【问题描述】:我想打印出当前的 URL 路径,但我的代码不能正常工作。
我在我的 file.php 中使用它
echo "http://".$_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'];
当我打开网址 http://sub.mydomain.com/file.php 时,它似乎工作正常,并打印出"http://sub.mydomain.com/file.php"
但如果我删除了 .php 扩展名,因此 url 将改为 http://sub.mydomain.com/file,它会打印 "http://sub.mydomain.com/sub/file.php"
这是错误的。
子域打印两次,不知道为什么?
在我的 .htaccess 文件中,我进行了重写,可以删除 .php 扩展名。
有谁可以/想帮助我吗? :)
【问题讨论】:
【参考方案1】:您需要$_SERVER['REQUEST_URI']
而不是$_SERVER['SCRIPT_NAME']
,因为$_SERVER['SCRIPT_NAME']
将始终为您提供当前正在工作的文件。
来自手册:
SCRIPT_NAME:包含当前脚本的路径。这对于需要指向自身的页面很有用。
__FILE__
常量包含当前(即包含的)文件的完整路径和文件名。 .
我想这可以帮助您完全获取当前 URL。
echo 'http://'. $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
注意:不要依赖客户的HTTP_HOST
,而是使用SERVER_NAME
!见:What is the difference between HTTP_HOST and SERVER_NAME in PHP?
安全警告
如果您在任何地方使用它(打印或存储在数据库中),您需要过滤(清理)$_SERVER['REQUEST_URI']
,因为它不安全。
// ie: this could be harmfull
/user?id=123%00%27<script...
因此,请始终在使用用户输入之前对其进行过滤。至少使用htmlspecialchars
、htmlentities
、strip_tags
等。
或者类似的东西;
function get_current_url($strip = true)
static $filter, $scheme, $host, $port;
if ($filter == null)
$filter = function($input) use($strip)
$input = trim($input);
if ($input == '/')
return $input;
// add more chars if needed
$input = str_ireplace(["\0", '%00', "\x0a", '%0a', "\x1a", '%1a'], '',
rawurldecode($input));
// remove markup stuff
if ($strip)
$input = strip_tags($input);
// or any encoding you use instead of utf-8
$input = htmlspecialchars($input, ENT_QUOTES, 'utf-8');
return $input;
;
$scheme = isset($_SERVER['REQUEST_SCHEME']) ? $_SERVER['REQUEST_SCHEME']
: ('http'. (($_SERVER['SERVER_PORT'] == '443') ? 's' : ''));
$host = $_SERVER['SERVER_NAME'];
$port = ($_SERVER['SERVER_PORT'] != '80' && $scheme != 'https')
? (':'. $_SERVER['SERVER_PORT']) : '';
return sprintf('%s://%s%s%s', $scheme, $host, $port, $filter($_SERVER['REQUEST_URI']));
【讨论】:
如果您的真实服务主机在代理服务器之后或使用非标准端口,则依赖 HTTP_HOST 非常有用【参考方案2】:$main_folder = str_replace('\\','/',dirname(__FILE__) );
$document_root = str_replace('\\','/',$_SERVER['DOCUMENT_ROOT'] );
$main_folder = str_replace( $document_root, '', $main_folder);
if( $main_folder )
$current_url = $_SERVER['REQUEST_SCHEME'].'://'.$_SERVER['SERVER_NAME']. '/' . ltrim( $main_folder, '/' ) . '/';
else
$current_url = $_SERVER['REQUEST_SCHEME'].'://'.rtrim( $_SERVER['SERVER_NAME'], '/'). '/';
【讨论】:
描述你的答案 如何打印当前 URL 路径? $current_url -> 当前 URL 路径 在 MacOS Sierra 上的最新 MAMP 上失败。 ***.com/questions/18008135/… $scheme = isset($_SERVER['REQUEST_SCHEME']) ? $_SERVER['REQUEST_SCHEME'] : 'http'; if( $main_folder ) $current_url = $scheme.'://'.$_SERVER['SERVER_NAME']. '/' 。 ltrim($main_folder, '/') 。 '/'; else $current_url = $scheme.'://'.rtrim($_SERVER['SERVER_NAME'], '/')。 '/';以上是关于如何将PHP路径http://127.0.0.1.81改成80的主要内容,如果未能解决你的问题,请参考以下文章
[php]相对路径和绝对路径 ../ ../../ ./ / 还有不写, 这几种都是哪些路径啊,有点晕
如何linux 重复上一次命令中的路径?1,我敲 ls Downloads/test/tools/apache-jmeter-2.12/lib/ext/
请问php如何修改要下载的文件夹的路径啊啊?教程是下载当前目录下的文件夹,我想指定到E:/model/B1
如何在 CentOS 7 / Ubuntu 15.04 上安装 PHP 框架 Laravel
XAMPP安装成功后输入localhost只能跳转到http://localhost/xampp/index.php 如何去掉中间的xampp!!!