301 htaccess 重定向,网址中包含数字


301 htaccess redirects with numbers in URLs

我想重定向以下链接:

http://domain.com/forum1/threads/1023/

自:

http://domain.com/forum2/showthread.php?t=1023

请帮助我制定适当的.htaccess规则。

我尝试了以下方法,但没有成功:

RewriteRule ^forum1/thread/('d+)/$ /forum2/showthread.php?t=$1 [R=301,L]

您可以使用此规则:

RewriteEngine On
RewriteRule ^forum1/threads/([0-9]+)/?$ /forum2/showthread.php?t=$1 [L,NC,QSA,R=301]

我认为你应该用这个做你的工作

    RedirectMatch 301 ^/forum1/threads/('d+)/$ /forum2/showthread.php?t=$1