我目前在.htaccess中使用此规则
RewriteCond %{REQUEST_URI} !^/billing/
RewriteRule ^([^\.]+)$ $1.html [NC,L]
并且想知道它是否有可能自动重定向最后有.html的链接,例如examplewebsite.com/fishing.html到examplewebsite.com/fishing
谢谢!
答案 0 :(得分:0)
您可以在之前的规则之前为.html
删除添加此重定向规则:
RewriteCond %{THE_REQUEST} /([^.]+)\.html[\s?] [NC]
RewriteRule ^ /%1 [R=302,L,NE]