将/post.html中的301重定向到/ post /之后在wordpress中永久更改

时间:2014-10-15 17:53:07

标签: php wordpress .htaccess redirect

我将/post.html中的固定链接更改为/ post /

我在.htaccess中使用了这段代码:

RedirectMatch 301 /(.*)\.html http://example.com/$1

帖子重定向效果很好,但如果我转到主页,我会看到http://example.com/index有404错误

我该如何解决?

1 个答案:

答案 0 :(得分:0)

您可以使用negative lookahead来避免匹配index

RedirectMatch 301 ^/((?!index).+?)\.html$ http://example.com/$1