我在localhost中有两个文件夹。我必须从一个文件夹重定向到另一个文件夹
像
当我localhost/folder1
时,它应该重定向到localhost/folder2
请帮帮我。
答案 0 :(得分:0)
使用
您在.htaccess文件中RewriteRule ^subdirectory/(.*)$ /anotherdirectory/$1 [R=301,NC,L]
答案 1 :(得分:0)
您可以使用:
RedirectMatch 301 ^/folder1(.*)$ /folder2$1