从网址中删除产品类别后,分页页面无效?

时间:2016-12-15 08:24:45

标签: wordpress .htaccess url-rewriting pagination woocommerce

对于一个woocommerce网站,我必须从我的网址中删除“product-category”和“product-tag”。

http://example.com/product-category/latest-bridal-wear/

以下.htaccess代码不适用于类别分页页面
http://example.com/product-category/latest-bridal-wear/page/2/

RewriteRule ^/product-category/(.+)$ http://example.com/$1 [R=301,L]

RedirectMatch 301 ^/product-category/(.+)$ http://example.com/$1

我只需要从网址中删除“产品类别”的代码,也可以使用分页页面。

我知道如果我们遵循UX和woocommerce规则将是一个坏主意,但我需要它没有任何插件。

1 个答案:

答案 0 :(得分:1)

有些服务器处理重写规则的方式不同,特别是共享主机方案,但我认为您需要的重定向更像是这样。将用于指向您网站的链接,但不会对您网站生成的分页链接执行任何操作。

RedirectMatch 301 /product-category(.*) //$1