apache2.4以上版本配置虚拟主机

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache2.4以上版本配置虚拟主机相关的知识,希望对你有一定的参考价值。

一  将 主配置文件 httpd.conf中

#Include conf/extra/httpd-vhosts.conf 前面的# 去掉

二  进入conf/extra 

修改 /conf/extra/httpd-vhosts.conf

增加下面内容 ,2.4以后这部分内容很重要

<Directory "/www/html/">   

 Options Indexes FollowSymLinks Includes ExecCGI

 AllowOverride All 

 Require all granted

</Directory>

 

/www/html/是根目录

 

然后在下面增加:

<VirtualHost *:80>

  ServerAdmin [email protected]   

 DocumentRoot "/srv/http/yii2/web" 

  ServerName yii2   

 ErrorLog "/var/log/httpd/dummy-host2.example.com-error_log"   

 CustomLog "/var/log/httpd/dummy-host2.example.com-access_log"  combined

</VirtualHost>

 

ServerName 以及DocumentRoot这一部分一定要写对!其它可以默认即可!

以上是关于apache2.4以上版本配置虚拟主机的主要内容,如果未能解决你的问题,请参考以下文章

Apache配置虚拟主机后,不能访问localhost的问题

Apache2.4.11 虚拟主机配置不工作

Linux系统下Apache2.4.6配置虚拟主机

apache2.4.X虚拟主机配置

apache2.4 虚拟主机配置

apache2.4配置虚拟主机