1

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

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

该博客的新链接如下所示:

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

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

4

1 回答 1

-1

您可以使用 mod_alias:

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

或 mod_rewrite:

RewriteEngine On
RewriteRule ^/?blog/([^/]+) /$1/ [L,R=301]
于 2012-11-08T16:33:27.860 回答