1

我一生都无法理解以前的开发人员在哪里设置 localhost 系统的配置,以便应用程序可以使用如下 URL 运行:

http://my-app/index.php 代替 http://localhost/index.php

我检查了以下文件,但找不到my-app任何地方:

httpd-vhosts.conf, windowshosts文件, wampmanager.tpl, wampmanager.ini, .htaccess, 和文件夹内的wamp/bin/apache/Apachexxxx/文件。我还应该去哪里寻找这个神秘的环境?该应用程序在 wampserver 2.1 上运行

4

3 回答 3

1

Problem solved! It's so simple I can't believe I'd been cracking my head over this for days.

The old developer had simply renamed the computer name, from (right-click) My Computer's Properties. The name was changed to my-app. That's it.

于 2013-07-31T21:50:24.193 回答
0

检查你的hosts文件。由于您正在运行的窗口位于以下路径中

c:\windows\system32\drivers\etc\hosts
于 2013-07-30T14:55:34.907 回答
0

进入my-app.com浏览器后,打开C:/wamp/www/my-app/文件夹下的网站。

关于 WAMP 服务器

附加到VirtualHost块下面的文件。

重要提示:以下代码基于C:/wamp/www/my-app/文件。你可以改变你想要的。

C:\wamp\bin\apache\apache2.2.22\conf\extra\httpd-vhosts.conf

<VirtualHost *:80>
    ServerAdmin info@my-app.com
    DocumentRoot "C:/wamp/www/my-app/"
    ServerName my-app.com
    ServerAlias www.my-app.com
    ErrorLog "logs/my-app.com-error.log"
    CustomLog "logs/my-app.com-access.log" common
</VirtualHost>

关于 Windows

像这样附加行:

C:\Windows\System32\drivers\etc\hosts

127.0.0.1       my-app.com
127.0.0.1       www.my-app.com

重新启动您的WAMP服务器..

于 2013-07-30T15:08:34.443 回答