在htaccess中从一个文件夹重定向到另一个文件夹

时间:2014-02-10 07:13:38

标签: .htaccess

我在localhost中有两个文件夹。我必须从一个文件夹重定向到另一个文件夹

像 当我localhost/folder1时,它应该重定向到localhost/folder2

请帮帮我。

2 个答案:

答案 0 :(得分:0)

使用 您在.htaccess文件中RewriteRule ^subdirectory/(.*)$ /anotherdirectory/$1 [R=301,NC,L]

答案 1 :(得分:0)

您可以使用:

RedirectMatch 301 ^/folder1(.*)$ /folder2$1