我正在创建一些htaccess规则,作为wordpress网站迁移的一部分。
在旧网站上,URL为:
/product-category/spearfishing-fins/
在新网站上,它只是 / spearfishing-fins /
所以我只是想删除应该足够简单的“产品类别”。
这是我的代码:
RewriteEngine on
RewriteRule ^/product-category/(.*) /$1 [R=301,L]
and alternatively
RewriteRule ^product-category/(.*)$ /$1 [R=301,L]
或者
RewriteRule ^product-category/(.*)$ http://example.com/$1 [R=301,L]
这些都不起作用-您仍然可以同时访问两者:
/product-category/spearfishing-fins/
和
/spearfishing-fins/
您能看到我想念的东西吗?