从Request.ServerVariables(“ HTTP_X_ORIGINAL_URL”)中删除正斜杠

时间:2019-11-28 10:32:28

标签: asp-classic iis-8 request.servervariables

我遇到以下ASP Server变量问题:

Request.ServerVariables("HTTP_X_ORIGINAL_URL")

它正在删除多个正斜杠的实例,因此下面的URI:

/here/is//my/uri////as/an/example

被解释为:

/here/is/my/uri/as/an/example

这是IIS 8.5上相当标准的网站设置。

还有其他人遇到类似的问题吗?

1 个答案:

答案 0 :(得分:0)

根据Lex Li的建议,在将请求发送到服务器之前,浏览器会删除重复的斜杠。