Home >Backend Development >PHP Tutorial >为什么localhost中的文件打不开

为什么localhost中的文件打不开

WBOY
WBOYOriginal
2016-06-06 20:07:061859browse

例如我在www文件夹中有个项目文件夹叫test我打开localhost然后点击test,没有跳转到localhost/test 而是直接跳到http://test/是什么地方的配置出了问题图片描述

为什么localhost中的文件打不开为什么localhost中的文件打不开

回复内容:

例如我在www文件夹中有个项目文件夹叫test我打开localhost然后点击test,没有跳转到localhost/test 而是直接跳到http://test/是什么地方的配置出了问题图片描述

为什么localhost中的文件打不开为什么localhost中的文件打不开

没事儿,很正常,没啥影响的。
如果实在别扭自己编辑一下index.php就行了,其中有

<code>$suppress_localhost = true;
if(!empty($wampConf['urlAddLocalhost']) && $wampConf['urlAddLocalhost'] !== "off")
    $suppress_localhost = false;</code>

就是它的问题了,这个if默认是不成立的,所以$suppress_localhost = true;,后面有

<code>        $projectContents .= '<li><a href="';%0A%20%20%20%20%20%20%20%20if(%24suppress_localhost)%0A%20%20%20%20%20%20%20%20%20%20%20%20%24projectContents%20.=%20'http://'.%24file.%24UrlPort.'/" else .="http://localhost"></a></li>';</code>

明白了?

哦,这个问题啊
wamp有设置的,新添加一个站点就行了
或者,你直接访问这个
http://localhost/test

PS:不管你水平怎么样,建议这种集成环境还是不要用了,自己配置一遍环境,才能算开始

新版的确实有这个问题 我之前遇见过。可以通过修改index. php改过来。具体方法网上有

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn