0

我有这个 URL 重写规则

RewriteRule ^(send-your-request.*)$ / [NC,L,QSA,R=301]

它基本上应该只是从 URL 中删除“/send-your-request”(即用域中的查询字符串参数重写它,即

http://example.com/send-your-request/?a_aid=rocketnews24&pname=just%20a%20test

被改写为:

http://example.com/?a_aid=rocketnews24&pname=just%20a%20test

在那种情况下它可以工作,但是如果我添加最后一个参数,它就会停止工作

http://example.com/send-your-request/?a_aid=rocketnews24&pname=just%20a%20test&plink=http%3A%2F%2Fradio-eva.jp%2Fshop%2Fproducts%2Fdetail.php%3Fproduct_id%3D82

谁能告诉我一个可以处理所有查询字符串参数的更好的重写规则?

编辑 这里是我的其他规则,但我在第一个规则上有“L”,所以它应该停止处理吧?

RewriteRule ^(send-your-request.*)$ / [NC,QSA,R=301,L]
Redirect 301 /products http://whiterabbitexpress.com/
RewriteRule ^index\.php$ - [L]
RewriteCond %{QUERY_STRING} ^(.*)q=(.*)$
RewriteRule ^(.*)$ $1?%1s=%2 [L,R=301] 
RewriteRule ^catalogsearch/result/?$ / [NC,QSA,L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
4

2 回答 2

1

已解决:这是一个旨在防止注入的 Mod_security 规则。

SecRule REQUEST_URI "=(?:ogg|gopher|data|php|zlib|(?:ht|f)tps?)://" \ "capture,id:340165,t:none,t:urlDecodeUni,t:replaceNulls ,t:compressWhiteSpace,t:lowercase,rev:275,severity:2,msg:'Atomicorp.com 不支持的延迟规则:URI (AE) 中的未编码可能远程文件注入尝试',logdata:'%{MATCHED_VAR}'"

能够通过 ConfigServer ModSecurity Control 修改规则。

于 2012-11-12T11:13:02.350 回答
0

没有承诺,但这里有一个替代方案,应该做同样的事情,但值得一试。重写中的?QueryString 将剥离,然后%1反向引用将重新附加它。

RewriteBase /
RewriteCond %{QUERY_STRING} (.*)
RewriteRule ^send-your-request/?$ /?%1 [NC,R=301,L]

值得注意的是,QueryString 会随着重写自动传递,并且如果您的重写中存在 a,那么QSA修饰符只会附加一个附加参数?- 如果您在重写中省略QSA并包含?,它将删除现有的 QueryString。您也可以尝试离开QSA

RewriteBase /
RewriteRule ^send-your-request/?$ / [NC,R=301,L]
于 2012-11-09T17:40:49.127 回答