一个服务器的Apache2.4.6配置多个域名
Posted 记忆斑驳的回忆
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个服务器的Apache2.4.6配置多个域名相关的知识,希望对你有一定的参考价值。
进入到Apache的配置文件:cd /etc/httpd/conf/http.conf
在后面添加:
<VirtualHost *:80> # This first-listed virtual host is also the default for *:80 ServerName www.example.com ServerAlias example.com DocumentRoot "/var/www/html/" </VirtualHost>
详细参考官网:http://httpd.apache.org/docs/2.4/vhosts/name-based.html
以上是关于一个服务器的Apache2.4.6配置多个域名的主要内容,如果未能解决你的问题,请参考以下文章