我刚刚迁移到WordPress网站,并且我的旧站点的URL以.htm结尾,例如https://www.example.com/accessories.htm,并且我想301将所有这些URL重定向到根,即https://www.example.com/accessories/-我已经尝试了在htaccess中执行以下代码,但无效
RewriteEngine On
RewriteCond %{QUERY_STRING} ^$
RewriteRule ^\.htm$ /? [R=301,NE,NC,L]
答案 0 :(得分:1)
尝试将此规则作为您的最高规则:
RewriteEngine On
RewriteCond %{THE_REQUEST} \s/(\S+)\.html?\s [NC]
RewriteRule ^ /%1/ [L,NE,R=301]
# remaining rules go here