domain子文件夹使用wordpress中的.htaccess重定向到域

时间:2012-10-06 17:45:28

标签: apache redirect dns

我有一个wordpress博客,它运行在example1.com/folder或www.example1.com/folder上。现在我必须将其重定向到example2.com或www.example2.com。我怎么能用.htaccess做到这一点?

1 个答案:

答案 0 :(得分:0)

RewriteEngine On

RewriteCond %{HTTP_HOST} ^((www.)?)example1.com [NC]
RewriteRule ^folder/(.*)$ http://www.example2.com/$1 [R=301,L]

检查是否收到www.example1.comexample.com的流量,如果是,则将/folder/.*的任何内容发送到www.example2.com/.*例如:

www.example1.com/folder/blah.html变为www.example2.com/blah.html