父文件夹的htaccess重定向规则
RewriteRule ^/$ /curse/ [R]
abc.com/
会重定向到abc.com/curse/
但是如何将第一个文件夹重定向到/curse/
?
abc.com/abcxyz
应重定向到abc.com/curse/
和
abc.com/abcxyz/sfdf
应重定向到abc.com/curse/
答案 0 :(得分:0)
您可以在根目录中的.htaccess文件中尝试:
Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !curse [NC]
RewriteRule .* /curse [R=301,L]
永久重定向
http://example.com/
或
http://example.com/anything
要
http://example.com/curse/