Apache 2.4.6 多域名多网站配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Apache 2.4.6 多域名多网站配置相关的知识,希望对你有一定的参考价值。
参考链接:How To Set Up Apache Virtual Hosts on CentOS 7
近日因为需要,需要在一个公网IP的服务器上配置多个网站,不同的域名访问不同的网站,用到了Apache的Virtualhost
系统环境:centos 7 + apache 2.4.6 + php + mysql
# 创建网站目录 mkdir -p /var/www/shuaiqijun.com/public_html # 帅旗军个人博客 mkdir -p /var/www/hmgzh.net/public_html # 黄梅公众号网站 # www目录755权限 chmod -R 755 /var/www # 创建主页 vi /var/www/shuaiqijun.com/public_html/index.html #添加任意内容 # 创建Virtual配置目录 mkdir /etc/httpd/sites-available mkdir /etc/httpd/sites-enabled # 配置httpd.conf vi /etc/httpd/conf/httpd.conf # 添加以下内容 IncludeOptional sites-enabled/*.conf 注释掉# DocumentRoot "/var/www/html" # 创建网站Virtual配置文件 vi /etc/httpd/sites-available/shuaiqijun.com.conf # 添加以下内容 <VirtualHost *:80> ServerName www.shuaiqijun.com ServerAlias shuaiqijun.com DocumentRoot /var/www/shuaiqijun.com/public_html </VirtualHost> <Directory "/var/www/shuaiqijun.com"> Options +Includes -Indexes AllowOverride All Require all granted </Directory> #创建链接 ln -s /etc/httpd/sites-available/shuaiqijun.com.conf /etc/httpd/sites-enabled/shuaiqijun.com.conf #配置HOSTS vi /etc/hosts # 更改如下 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 10.100.18.100 shuaiqijun.com 10.100.18.100 hmgzh.net #重启Apache systemctl restart httpd
以上是关于Apache 2.4.6 多域名多网站配置的主要内容,如果未能解决你的问题,请参考以下文章