centos7 apache2 yum安装环境下 修改虚拟主机配置文件

httpd.conf在/etc/httpd/conf下
默认自动引用 /etc/httpd/conf.d/下的所有.conf文件
所以我们把 vhost.conf建立在 /etc/httpd/conf.d/目录下
cd /etc/httpd/conf.d/
vim vhost.conf
添加:


ServerAdmin [email protected]
directoryIndex  index.html index.php index.htm
ServerName x.xxx.net
DocumentRoot /www/web

    Options -Indexes

    AllowOverride All

    Require all granted

编辑完了别忘了 
httpd -t 

测试没问题了再重启apache

你可能感兴趣的:(apache)