HTTPD配置笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTTPD配置笔记相关的知识,希望对你有一定的参考价值。
将多个域名301重定向至一个域名
添加访问域名的DNS记录,使之能解析至同一服务器;
修改httpd的配置,允许网站目录下的.htaccess配置覆盖httpd的配置;
编辑.htaccess,配置重定向域名。
Example:使www.oimec.com.cn、www.oimec.cn、www.jicheng.cn 三个域名301重定向至www.jicheng.net.cn
修改DNS,添加www.oimec.com.cn、www.oimec.cn、www.jicheng.cn域名的CNAME记录至www.jicheng.net.cn。
修改httpd的配置文件:
<VirtualHost *:80> ServerAdmin [email protected] ServerName www.jicheng.net.cn ServerAlias www.jicheng.cn www.oimec.com.cn www.oimec.cn DocumentRoot /data/htdocs/jicheng <Directory "/data/htdocs/jicheng/"> Options FollowSymLinks AllowOverride All #启用网站目录下的.htaccess,使之生效 Require all granted </Directory> </VirtualHost>
在网站目录下添加.htaccess文件,内容如下:
RewriteEngine On # www.oimec.com.cn www.oimec.cn www.jicheng.cn redirect to www.jicheng.net.cn RewriteBase /data/htdocs/jicheng/ RewriteCond %{HTTP_HOST} ^www.oimec.com.cn [OR] RewriteCond %{HTTP_HOST} ^www.oimec.cn [OR] RewriteCond %{HTTP_HOST} ^www.jicheng.cn [NC] RewriteRule ^(.*)$ http://www.jicheng.net.cn/$1 [L,R=301]
验证:
本文出自 “银凯的博客” 博客,请务必保留此出处http://yinkai.blog.51cto.com/3813923/1912480
以上是关于HTTPD配置笔记的主要内容,如果未能解决你的问题,请参考以下文章
httpd Server not started: (13)Permission denied: make_sock: could not bind to address [::]:8888(代码片段