【问题标题】:Wordpress redirect from posts index.html来自帖子 index.html 的 Wordpress 重定向
【发布时间】:2014-03-25 10:25:10
【问题描述】:

我正在从事 wordpress 项目。我的类别链接的 URL 是

http://mywebsite.com/cardfinder/hotel_credit_cards/index.html.

我希望它应该被重定向到

http://mywebsite.com/cardfinder/hotel_credit_cards

有什么办法可以做到这一点吗?

【问题讨论】:

    标签: wordpress .htaccess redirect url-rewriting


    【解决方案1】:

    在根目录下创建.htaccess 规则。

    RewriteEngine On
    RewriteRule ^index\.html$ / [R=301,L]
    RewriteRule ^(.*)/index\.html$ /$1/ [R=301,L]
    

    【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2020-10-24
    • 1970-01-01
    • 1970-01-01
    • 2022-11-10
    • 2017-07-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多