我想重定向:
site.org/us/
site.org/us/alaska/
site.org/us/south-carolina/
到
site.org/by-state/
site.org/by-state/alaska.html
site.org/by-state/south-carolina.html
我的.htaccess代码:
RewriteRule ^us/*$ by-state/ [R=301,L]
RewriteRule ^us/(.*)/?$ by-state/$1.html [R=301,L]
不满意的结果如下:
site.org/us/alaska/ is going to:
site.org/by-state/alaska/.html
site.org/us/south-carolina/ is going to:
site.org/by-state/south-carolina/.html
请注意.html之前的不必要的尾部斜杠。
任何帮助都会非常感激。
答案 0 :(得分:1)
RewriteRule ^us/*$ by-state/ [R=301,L]
RewriteRule ^us/(.*)$ by-state/$1.html [R=301,L]