【发布时间】:2017-04-30 18:45:04
【问题描述】:
对于 woocommerce 网站,我必须从我的网址中删除“产品类别”和“产品标签”。
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
我只需要从 url 中删除“product-category”并且也适用于分页页面的代码。
我知道如果我们遵循 UX 和 woocommerce 规则会是个坏主意,但我非常需要它而没有任何插件。
【问题讨论】:
标签: wordpress .htaccess url-rewriting pagination woocommerce