php设置Apache虚拟主机vhost
打开浏览器,提示“access forbidden! xampp 访问目录”
解决方法:
内容3 修改一下
<VirtualHost *:80>
ServerAdmin xxxxxx@qq.com
DocumentRoot "C:\website\guanwang"
ServerName www.abc.com
<Directory C:\website\guanwang>
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Require all granted
</Directory>
ErrorLog "logs/dummy-host2.www.abc.com-error.log"
CustomLog "logs/dummy-host2.www.abc.com-access.log" common
</VirtualHost>
转载:http://blog.csdn.net/oneym/article/details/48050487
1、在系统中注册主机头
使用文本编辑工具编辑C:\Windows\System32\drivers\etc\hosts
文件,在文件中添加一行记录如下所示: 127.0.0.1 oneym.dev
2、启用Apache的vhost功能
定位到C:\xampp\apache\conf\httpd.conf
文件开始编辑,使用编辑器的搜索功能ctrl+F
搜索mod_vhost_alias.so
;找到相应代码后,去掉代码前面的#号,编辑完成后如下所示: LoadModule vhost_alias_module modules/mod_vhost_alias.so
3、配置Apache的vhost功能
编辑C:\xampp\apache\conf\extra\httpd-vhosts.conf
文件,在文件末尾添加如下代码:
<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs/php"
ServerName oneym.dev
ErrorLog "logs/oneym.dev-error.log"
CustomLog "logs/oneym.dev-access.log" common
</VirtualHost>
4、重启Apache服务器
使用控制面板可以快速重启Apache服务器,截图如下: