apache_conf [server]将旧域重写为新域

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache_conf [server]将旧域重写为新域相关的知识,希望对你有一定的参考价值。

#rewrite all subdomain on old domain to subdomain on new domain
RewriteCond %{HTTP_HOST} ^(.*)\.olddomain\.com$ [NC]  
RewriteRule ^(.*)$ http://%1.newdomain.com/$1 [R=301,L]

# rewrite all links to new domain
RewriteEngine on 
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [R=301,L]

以上是关于apache_conf [server]将旧域重写为新域的主要内容,如果未能解决你的问题,请参考以下文章

将旧域的所有网页重定向到新域索引

在 .htaccess 中使用 HTTPS 将旧域重定向到新域

HTACCESS-将旧域重定向到新域

使用 Apache 将旧域上的旧路径重定向到新域上的新路径

.htaccess 301 将旧域上的所有页面重定向到新域上的单个页面

将旧域的每个页面重定向到新域上的相同页面URL