apache配置二级域名
导读
通常我们的网站拥有多个域名,我们需要配置二级域名时该如何设置呢
我这里介绍使用apache的http.conf配置,配置如下两步:
1、配置http.conf;
vim /etc/httpd/conf/httpd.conf
在文件的最后追加一下代码:
NameVirtualHost *:80 # domain <VirtualHost *:80> DocumentRoot /var/www/html/domain ServerName freexyz.cn ErrorLog logs/blog-error_log CustomLog logs/blog-access_log common </VirtualHost> # subdomain <VirtualHost *:80> DocumentRoot /var/www/html/subdomain ServerName subdomain.freexyz.cn ErrorLog logs/clininfo-error_log CustomLog logs/clininfo-access_log common </VirtualHost>
2、重启apache;service httpd restart
可以发现成功了,这里chenglin.name就是访问的主页,而c.chenglin.name访问的是另一个文件夹。
特别注意 NameVirtualHost *:80 这个要写上,或者直接在http.conf上面打开这个
评论(0)