htaccess重定向包含查询的网址

时间:2014-06-25 07:28:18

标签: apache .htaccess redirect url-redirection litespeed

我有一个网址 domain.com/fun/page / ,我想在追加查询字符串时将其重定向到自身( domain.com/fun/page/? XYZ )。

服务器是LiteSpeed,无论如何(我已尝试过在网上和网上其他地方找到的众多规则),我得不到我想要的东西。似乎我只是不熟练编写匹配的正则表达式。

1 个答案:

答案 0 :(得分:0)

将此代码放入/fun/.htaccess文件中:

RewriteEngine On
RewriteBase /fun/

RewriteCond %{QUERY_STRING} .+
RewriteRule ^page/?$ %{REQUEST_URI}? [NC,R=302,L]

跟踪?将删除任何现有的查询字符串。