如何使用.htaccess将指定目录重定向到其他站点

时间:2012-03-09 22:31:08

标签: .htaccess mod-rewrite redirect request

我需要将特定网站特定目录中的所有文件重定向到其他网站的同一目录。例如:

http://www.mysite.com/dir/file1.html ---> http://www.mysite2.com/dir/file1.html

http://www.mysite.com/dir/file2.html ---> http://www.mysite2.com/dir/file2.html

http://www.mysite.com/dir/file3.html ---> http://www.mysite2.com/dir/file3.html

谢谢。

2 个答案:

答案 0 :(得分:0)

您是否使用过搜索引擎?

Options +FollowSymLinks
RewriteEngine on
RewriteRule /dir/(.*) http://www.mysite2.com/dir/$1 [R=301,L] 

答案 1 :(得分:0)

要仅重定向一个目录,请尝试以下操作:

Options +FollowSymLinks
RewriteEngine on
RewriteRule /dir/(.*) http://www.mysite2.com/dir/$1 [R=301,L]