需要使用 IIRF ISAPI 过滤器重定向双百分号 %% 的帮助
我正在尝试重定向以下 URL
http://www.example.com/%%Some-Random-URL%%000001&ProductID=BIG2008_118&AEProjectTypeIDURL=APT_61
使用以下代码:
RewriteRule ^(.*)/ .Some-Random-URL(.)$ $1 [NC,L,R=301]
但重定向不是由于
某种原因,我最终收到以下消息: 错误请求 - 无效 URL
HTTP 错误 400。请求 URL 无效。
但如果我删除 %% %% 重定向就可以正常工作。
有什么想法吗?
I am trying to redirect the following URL
http://www.example.com/%%Some-Random-URL%%000001&ProductID=BIG2008_118&AEProjectTypeIDURL=APT_61
using the following code:
RewriteRule ^(.*)/.Some-Random-URL(.)$ $1 [NC,L,R=301]
But the redirect is not happening
for some reason I end up having the following message:
Bad Request - Invalid URL
HTTP Error 400. The request URL is invalid.
but if I remove %% %% redirect works fine.
any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 URL 无效,IIRF 对此无能为力。
您应该做的第一件事是修复 URL,特别是
%%
。百分比用于对网址中的字符进行编码:如果网址中有百分比字符,则需要进行百分比编码 > 它 -
%
变为%25
。You have an invalid URL, there is nothing IIRF can do about that.
The first thing you should do is to fix the URL, in particular the
%%
. Percent is used to encode characters in urls:If you have a percent character in an url, you'll need to percent-encode it -
%
becomes%25
.