1
我在本地主機2個文件夾中。我要重定向從一個文件夾到另一個從一個文件夾重定向到另一個htaccess的
像 當我這樣做localhost/folder1
那麼它應該重定向到localhost/folder2
請幫助我。
我在本地主機2個文件夾中。我要重定向從一個文件夾到另一個從一個文件夾重定向到另一個htaccess的
像 當我這樣做localhost/folder1
那麼它應該重定向到localhost/folder2
請幫助我。
您可以使用:
RedirectMatch 301 ^/folder1(.*)$ /folder2$1
使用 RewriteRule ^subdirectory/(.*)$ /anotherdirectory/$1 [R=301,NC,L]
在你的.htaccess文件