wampserver配置问题

时间:2014-05-18 19:36:40

标签: php apache wamp wampserver

我的环境 WampServer版本2.5 运行 Apache / 2.4.9(Win64)PHP / 5.5.12 / MySQL 5.6.17

localhost工作正常,我可以看到project folders中的DocumentRoot。当我尝试通过链接导航project folders时,浏览器无法找到它们。例如,如果我尝试在test内打开www文件夹,即localhost-->test会导致test folder未找到,显然浏览器中的网址会显示http://test/。但是,如果我在浏览器中手动输入http://localhost/test/这样的位置,那么我可以看到该项目,然后在病房可以通过链接浏览子文件夹。

我希望能够从我的localhost导航项目,而不是输入它。

1 个答案:

答案 0 :(得分:1)

Wamp 2.5可以使用虚拟主机。 here is nice tutorial。但是如果你仍然想使用localhost,请使用:

WWW导演中的

- > index.php文件搜索:

$suppress_localhost = true; // line 30

并将其设置为false:

$suppress_localhost = false;

要从托盘菜单中选择“我的项目”,您需要在第651行编辑来自refresh.php的{​​{1}}文件替换:

c:\Wamp\scripts

使用:

$myreplacesubmenuProjects .= 'Type: item; Caption: "'.$projectContents[$i].'"; Action: run; FileName: "'.$c_navigator.'"; Parameters: "http://'.$projectContents[$i].'/"; Glyph: 5 ';

然后在托盘图标上单击“刷新”。