Apache配置虚拟主机三大问题
第一大问题:配置失败
主要是apache 2.4以后配置步骤不再像以前那样了,正确步骤如下:
第一步:在httpd.conf中开启虚拟主机配置功能
#Include conf/extra/httpd-vhosts.conf... 你可以去掉它前面的 #
第二步:
#配置我们自己的虚拟主机
<VirtualHost *:8082> 特别注意端口!!
DocumentRoot "C:/Apache24/htdocs/example" //注意路径
ServerName localhost
DirectoryIndex index.php
ErrorLog "logs/mytest.com-error_log"
CustomLog "logs/mytest.com-access_log" common
</VirtualHost>
<VirtualHost *:8082>
DocumentRoot "C:/Apache24/htdocs/example/hspzf/public"
ServerName myzf.com
DirectoryIndex index.php
ErrorLog "logs/myzf.com-error_log"
CustomLog "logs/myzf.com-access_log" common