1

我想重定向以下链接:

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]
4

2 回答 2

1

您可以使用此规则:

RewriteEngine On

RewriteRule ^forum1/threads/([0-9]+)/?$ /forum2/showthread.php?t=$1 [L,NC,QSA,R=301]
于 2013-10-18T12:04:02.777 回答
0

我认为你应该做你的工作

    RedirectMatch 301 ^/forum1/threads/(\d+)/$ /forum2/showthread.php?t=$1
于 2013-10-18T13:54:12.753 回答