重写URL查询字符串的规则

时间:2016-01-05 21:20:20

标签: mod-rewrite

有人可以帮我解决如何替换查询字符串的问题。我想重定向URL(我要求从查询字符串URL中删除%2Fcontent%2Fabc)。

来自:

http://something.com/en-US/login.html?resource=%2Fcontent%2Fabc%2Fen-US%2Fxyz.html&$$login$$=%24%24login%24%24

为:

http://something.com/en-US/login.html?resource=%2Fen-US%2Fxyz.html&$$login$$=%24%24login%24%24

我尝试使用重写条件和规则,但没有运气。

RewriteCond %{QUERY_STRING} ^resource=%2Fcontent%2Fabc(.*)$       

RewriteRule ^/(.*)?resource=%2Fcontent%2Fabc(.*)$ /$1?resource=%2 [L]

0 个答案:

没有答案