需要Apache重写条件帮助

时间:2016-03-04 03:43:44

标签: apache mod-rewrite rewrite

我有这个要求,我需要有关重写条件的帮助。这是我目前的配置:

RewriteCond %{QUERY_STRING} dl=
RewriteRule ^/contextPath/(.+) /contextPath?dl=$1 [R=301,L]

我遇到的问题是这种类型的网址 http://myDomain/contextPath/login?dl=login需要转变为 http://myDomain/contextPath/dl=login

1 个答案:

答案 0 :(得分:0)

使用相同的重写规则,它有效

RewriteCond %{QUERY_STRING} dl=
RewriteRule ^/contextPath/(.+[^/]) /contextPath?dl=$1 [R=301,L]

我刚刚更新了原始重写规则以删除尾部斜杠

相关问题