apache配置基于域名访问
程序员文章站
2022-03-18 09:42:37
编辑配置文件,注释掉directory文件,一共四个vim /etc/httpd/conf/httpd.conf然后保存退出检查一下httpd配置文件,ok正常创建虚拟主机,编辑文件路径/etc/httpd/conf.d/a123.confcd /etc/httpd/conf.dvi a123.conf然后在a123.conf文件里加入这些东西可直接复制进去其中80是端口DocumentRoot /mnt/z里的 /mnt/z 是默认主页1.yao.com 是域名(如何在主...
编辑配置文件,注释掉directory文件,一共四个
vim /etc/httpd/conf/httpd.conf
然后保存退出
检查一下httpd配置文件,ok正常
创建虚拟主机,编辑文件路径/etc/httpd/conf.d/a123.conf
cd /etc/httpd/conf.d
vi a123.conf
然后在a123.conf文件里加入这些东西
可直接复制进去
其中80是端口
DocumentRoot /mnt/z里的 /mnt/z 是默认主页
1.yao.com 是域名(如何在主机上重定向域名)
在这里我创建了两个页面
<Directory “/mnt/z”>
<Directory “/mnt/z/z”>
<VirtualHost *:80>
DocumentRoot /mnt/z
ServerName 1.yao.com
<Directory "/mnt/z">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
<Directory "/mnt/z/z">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
创建网站根目录和主文件
mkdir -p /mnt/z/z
echo "hello apache" >/mnt/z/index.html
echo "hello z" >/mnt/z/z/index.html
验证apache配置文件,通过后重启服务
httpd -t && systemctl restart httpd
本文地址:https://blog.csdn.net/weixin_45663905/article/details/107334934