localhost文件夹的别名

时间:2015-03-21 01:33:01

标签: wamp alias

我试图再次设置我的WAMP环境。而且我总是忘记了我必须做的事情才能进入" test.dev" insteath of say" localhost / TestProject / index"

我需要做些什么才能做到这一点?

1 个答案:

答案 0 :(得分:2)

  1. 以管理员身份修改C:\Windows\System32\drivers\etc\hosts并添加行

    127.0.0.1 test.dev

  2. 删除"#"在# Include conf/extra/httpd-vhosts.conf中保存并关闭httpd.conf文件。

  3. 添加C:\wamp\bin\apache\apache2.x.x\conf\extra\httpd-vhosts.conf(其中x.x是您的apache版本)

    <VirtualHost *:80>
        ServerAdmin webmaster@yourdamin.com
        DocumentRoot "C:\wamp\www\yourfolder"
        ServerName test.dev
    </VirtualHost>
    
  4. 重启Apache