我将/post.html中的固定链接更改为/ post /
我在.htaccess中使用了这段代码:
RedirectMatch 301 /(.*)\.html http://example.com/$1
帖子重定向效果很好,但如果我转到主页,我会看到http://example.com/index有404错误
我该如何解决?
答案 0 :(得分:0)
您可以使用negative lookahead
来避免匹配index
:
RedirectMatch 301 ^/((?!index).+?)\.html$ http://example.com/$1