Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将如何获取请求页面的 URL 以及所有变量?我知道如何获取没有变量的 URL。
例如。/forums/index.cfm?id=10&cat=5
转储 cgi 变量,你会发现你正在寻找的东西等等。
<cfdump var="#cgi#">
山姆是正确的使用:
但是,您可能感兴趣的是来自 CGI 范围的值。例如,CGI.HTTP_REFERER 和 CGI.HTTP_USER_AGENT。请注意 HTTP_REFERER 只会在 CGI.REQUEST_METHOD 为 POST 而不是在 GET 请求时填充。