配置本地的虚拟主机
我新建了一个项目,名Hello,位于:I:/wamp/www目录下。 想访问这个项目,需要在地址栏上输入localhost/hello,但是我不想这样,我想要在地址栏输入local.hello.com就可以访问到我这个项目。具体步骤,如下:
第一步、找到httpd.conf
该文件在I:/wamp/bin/apache/apache2.4.9/conf目录下
第二步、打开httpd.conf开启部分功能(推荐使用editplus等轻量级编辑器,不推荐记事本)
①使用快捷键ctrl+F搜索mod_rewrite.so ,找到如图位置,去掉前面的#(开启功能)
②使用快捷键ctrl+F搜索Include conf/extra/httpd-vhosts.conf ,找到如图位置,去掉前面的#
记得一定要去掉#,然后保存保存(如果没有权限修改,可以在右键属性–>安全点击编辑权限)
第三步、找到httpd-vhosts.conf
该文件在 I:/wamp/bin/apache/apache2.4.9/conf/extra目录下
第四步、打开httpd-vhosts.conf,添加如下代码
<VirtualHost *:80> ServerAdmin webmaster@dummy-host2.example.com DocumentRoot "I:/wamp/www/Hello" ServerName local.hello.com ErrorLog "logs/local.hello.com-error.log" CustomLog "logs/local.hello.com-access.log" common</VirtualHost><VirtualHost *:80> ServerAdmin webmaster@dummy-host2.example.com DocumentRoot "I:/wamp/www" ServerName localhost ErrorLog "logs/localhost-error.log" CustomLog "logs/localhost-access.log" common</VirtualHost>主要是修改DocumentRoot和ServerNam
第五步、找到系统盘下的hosts文件
该文件在C:/Windows/System32/drivers/etc目录下,如图,如果没有权限保存,把它复制出来,待会儿修改了后再粘贴到此处,并覆盖。
第六步、打开hosts,并在末端加入以下内容
127.0.0.1 localhost127.0.0.1 local.hello.com第七步、以上操作别忘了保存保存,最后重启apache
原文地址:http://liuyanzhao.com/624.html