Wordpress重定向来自帖子index.html

时间:2014-03-25 10:25:10

标签: wordpress .htaccess redirect url-rewriting

我正在开发wordpress项目。我的类别链接的网址是

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

我希望它应该重定向到

http://mywebsite.com/cardfinder/hotel_credit_cards

有什么想法我能做到吗?

1 个答案:

答案 0 :(得分:2)

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

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