【问题标题】:htaccess 301 redirect in wordpresshtaccess 301 在 wordpress 中重定向
【发布时间】:2016-04-18 18:30:00
【问题描述】:

如何使用 htaccess 进行 301 重定向?

http://example.com/category/produkter_and_service 

http://example.com/products

虽然不影响此类类别中的帖子:

http://example.com/category/produkter_and_service/ventiler-og-bakkekraner/

我试过这样:

Redirect 301 /category/produkter_and_service http://www.example.com/products

但它也会影响里面的帖子页面:

/category/produkter_and_service/some_product

【问题讨论】:

    标签: wordpress .htaccess url-redirection


    【解决方案1】:

    重定向指令匹配完整的 uri 字符串,您需要使用 RedirectMatch 代替:

    RedirectMatch 301 ^/category/produkter_and_service$ http://www.example.com/products
    

    【讨论】:

      猜你喜欢
      • 2017-10-06
      • 2013-02-28
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-05-06
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多