如何使用htaccess重定向而不会导致循环

时间:2014-10-20 19:01:55

标签: .htaccess

我无法弄清楚如何重定向下面的网址而不会导致循环问题。我想重定向此网址...

http://toffsnew.co.uk/forum/recent

到此......

http://toffsnew.co.uk/forum/recent?limitstart=0

使用htaccess

由于

1 个答案:

答案 0 :(得分:1)

您可以在/forum/.htaccess文件中使用此代码:

RewriteEngine On
RewriteBase /forum/

RewriteCond %{QUERY_STRING} ^$
RewriteRule ^(recent)/?$ $1?limitstart=0 [L,NC]