Apache 2.4配置虚拟主机相关

居然环境配置,这里就不概述了,请自行百度。

Apache 2.2版本虚拟主机的配置如下所示:

<VirtualHost *:80>
ServerAdmin webmaster@dummy-host2.www.hp.com
DocumentRoot “e:/wwwroot”
ServerName local.itinfor.cn
ErrorLog “logs/dummy-host2.www.hp.com-error.log”
CustomLog “logs/dummy-host2.www.hp.com-access.log” common
</VirtualHost>

Apache 2.4版本虚拟主机的配置如下所示:

<VirtualHost *:80>
ServerName localhost
DocumentRoot “e:/wwwroot”
DirectoryIndex index.html index.php

<Directory “e:/wwwroot”>
Options -Indexes +FollowSymlinks
AllowOverride All
Require all granted
</Directory>

</VirtualHost>

 

请自行根据版本进行配置

如果还有什么不明白的地方,欢迎加我QQ进行咨询,请注明技术咨询

本人QQ:980569038

也可以扫码本人微信:

本人原创,转载请注明出处?http://www.itinfor.cn/archives/846

若该文章对您有一定帮助,欢迎打赏

 

 

 

Tagged ,