如何使用mod_rewrite重定向旧的博客文章URL?

时间:2016-01-08 11:04:50

标签: regex .htaccess mod-rewrite url-rewriting rewrite

我是mod_rewrite的新手,我需要从

重定向一堆博客文章网址
http://www.mywebsite.com/index.php/global/article/stackoverflow-rules

http://www.mywebsite.com/blog/article/stackoverflow-rules

如何使用mod_rewrite和正则表达式来完成?

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

在htaccess中尝试以下重定向:

RedirectMatch ^/index\.php/global/article/(.+)$ http://www.mywebsite.com/blog/article/$1