我试图再次设置我的WAMP环境。而且我总是忘记了我必须做的事情才能进入" test.dev" insteath of say" localhost / TestProject / index"
我需要做些什么才能做到这一点?
答案 0 :(得分:2)
以管理员身份修改C:\Windows\System32\drivers\etc\hosts
并添加行
127.0.0.1 test.dev
删除"#"在# Include conf/extra/httpd-vhosts.conf
中保存并关闭httpd.conf
文件。
添加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>
重启Apache