request.serverVariables()“URL” 与“Script_Name”
我正在维护一个经典的 asp 应用程序,在检查代码时我遇到了两行类似的代码:
Request.ServerVariables("URL")
' Output: "/path/to/file.asp"
Request.ServerVariables("SCRIPT_NAME")
' Output: "/path/to/file.asp"
我不明白......有什么区别? 它们都忽略我设置的 URL 重写,该重写将 /path 文件夹作为根文档(上面的 URL 被重写为“/to/file.asp”)
更多信息: 该网站部署在 IIS 7 上
I am maintaining a classic asp application and while going over the code I came across two similar lines of code:
Request.ServerVariables("URL")
' Output: "/path/to/file.asp"
Request.ServerVariables("SCRIPT_NAME")
' Output: "/path/to/file.asp"
I don't get it... what is the difference? both of them ignore the URL rewriting that I have set up which puts the /path folder as the root document (the above URL is rewritten to "/to/file.asp")
More info:
The site is deployed on IIS 7
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
URL 给出 URL 的基本部分,没有任何查询字符串或额外的路径信息。 对于原始 URL,请使用 HTTP_URL 或 UNENCODED_URL。
SCRIPT_NAME 正在执行的脚本的虚拟路径。 可用于自引用 URL。
请参阅http://www.requestservervariables.com/url
和 /script_name 的定义。
URL Gives the base portion of the URL, without any querystring or extra path information. For the raw URL, use HTTP_URL or UNENCODED_URL.
SCRIPT_NAME A virtual path to the script being executed. Can be used for self-referencing URLs.
See, http://www.requestservervariables.com/url
and /script_name for the definitions.
这可能是 IIS 7 下的一个错误。
我无法让
Request.ServerVariables("URL")
和Request.ServerVariables("SCRIPT_NAME")
返回不同的值。 我尝试过从包含的文件 () 或在
Server.Transfer 之后调用它们的情况
。This could be a bug under IIS 7.
I could not get
Request.ServerVariables("URL")
andRequest.ServerVariables("SCRIPT_NAME")
to return different values. I've tried the cases where they were called from an included file (<!--#include file="file.asp"-->
) or after aServer.Transfer
.Server.Transfer 的情况下可能存在这种情况吗?
在您执行 server.transfer 的情况下,我认为您会得到不同的结果
,即 SCRIPT_NAME 将是 /path/to.transferredfile.asp,而 URL 将保留为 /path/to/file.asp
Is this maybe there in case of Server.Transfer?
In the case where you do a server.transfer i think you would get different results
i.e. SCRIPT_NAME would be e.g. /path/to.transferredfile.asp whereas URL would remain as /path/to/file.asp