apache2.4.X虚拟主机配置
Posted WWSASUKE
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache2.4.X虚拟主机配置相关的知识,希望对你有一定的参考价值。
1,用记事本打开apache目录下httpd文件(如:D:\wamp\bin\apache\apache2.2.8\conf),找到如下模块
# Virtual hosts
#Includeconf/extra/httpd-vhosts.conf
去掉前面的#,这样就开启了httpd-vhosts虚拟主机文件。这时候重启wamp环境,无法打开localhost,需要在httpd-vhosts.conf配置一下。
2,打开host文件(C:\WINDOWS\system32\drivers\etc\hosts),增加一行代码
127.0.0.1 szyqbbs.com
3,用记事本打开httpd-vhosts文件,配置好localhost虚拟主机,参照httpd-vhosts文件中实例,修改成如下:
<VirtualHost *:80> DocumentRoot "D:/wamp/www" ServerName myserver.com </VirtualHost> <VirtualHost *:80> ServerAdmin [email protected] DocumentRoot "d:/www/szyqbbs" ServerName szyqbbs.com ErrorLog "logs/your_web_error.log" CustomLog "logs/your_web_access.log" common </VirtualHost>
修改配置如下:
DocumentRoot 修改为本地wamp环境下的www目录(如:D:\wamp\www)
ServerName改为localhost或者自定义的server如server.com
4,在浏览器中打开test.biuuu.com,发现如下错误403 Forbidden错误
Forbidden
You don‘t have permission to access / on this server.
分析:这主要是目录访问权限没有设置,需要设置对目录的访问权!
5,打开httpd文件,加入 如下语句
<Directory "D:/www/"> Options Indexes FollowSymlinks AllowOverride All Require all granted </Directory>
6,重启Apache,虚拟主机配置成 功!
注意事项
1,目录路径,如E:\WebRoot\biuuu
2,访问权限,如上Deny from all修改为allow from all
3,host文件,配置虚拟域名host指向
4,httpd文件,打开Include conf/extra/httpd-vhosts.conf模块
5,httpd-vhosts文件,配置虚拟主机
以上是关于apache2.4.X虚拟主机配置的主要内容,如果未能解决你的问题,请参考以下文章
php7.1+apache2.4.x+mysql5.7安装配置(目前windows)
AuthnProviderAlias ldap 可以与 Apache2.4.x 一起使用吗?
Apache2.4.x版wamp server让外网访问及启用.htaccess
Apache 2.4权限设置( you don't have permission to access / on this server Apache2.4)