WordPress重定向旧URL - 删除类别

时间:2017-02-10 21:02:31

标签: .htaccess redirect mod-rewrite

sample.com/info/news-in-one.html
sample.com/tests/test-for-me.html
sample.com/matrix/pro-matrix.html
and more

sample.com/news-in-one.html
sample.com/test-for-me.html
sample.com/pro-matrix.html
and more

我想重定向旧网址。我怎么能在htaccess中做到这一点。

总分类6:信息,测试,矩阵,笔记,地面,海洋。

抱歉我的英文。

1 个答案:

答案 0 :(得分:0)

你可以这样做:

RewriteEngine on
RewriteRule ^(?:info|tests|matrix|notes|ground|sea)/(.+\.html)$ /$1 [R=301,L]