I support the classic asp application and, looking at 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 understand ... what's the difference? both of them ignore the rewritten URL that I set, which places the / path folder as the root document (the above URL is rewritten to "/to/file.asp")
Additional Information : Site deployed on IIS 7
source share