我需要将所有流量重定向到http://example.com/sub1到http://example.com/sub1/sub2/。 htaccess文件位于http://example.com/sub1
有人可以帮忙吗?
答案 0 :(得分:1)
在/sub1/.htaccess
内使用此规则:
RewriteEngine On
RewriteRule ^((?!sub2/).*) sub2/$1 [L,NC]
如果您想要完全重定向(在浏览器中更改URL),请使用:
RewriteRule ^((?!sub2/).*) sub2/$1 [L,NC,NE,R=302]