.htaccess 301 redirect删除url的结尾

时间:2012-11-08 01:47:23

标签: .htaccess replace

我对htaccess不是很了解,我已经找到了答案并尝试了类似问题的一些可能的解决方案。但没有运气。 我们有一个wordpress网站,我们从http://somesite.com/blog/移到了http://somesite.com我找到了重定向它的方法但问题是:旧网址末尾有帖子编号所以它看起来像这样:

http://somesite.com/blog/blog-title-here/1234/

该博客的新链接如下:

http://somesite.com/blog-title-here/

有人可以帮我找出301 htaccess重定向吗?

1 个答案:

答案 0 :(得分:-1)

您可以使用mod_alias:

RedirectMatch 301 ^/blog/([^/]+) /$1/

或mod_rewrite:

RewriteEngine On
RewriteRule ^/?blog/([^/]+) /$1/ [L,R=301]