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.
我有一个 php 网站,在我的 htaccess 中我给出了
ErrorDocument 403 mydomain.com/payment-confirmation.php
重定向后我想知道哪个是支付确认中的父 URL。
目前我在浏览success.php(有很多参数)时得到403页面,所以我需要success.phppayment-confirmation.php中的值我已经检查过HTTP_REFERER但没有得到答案
success.php
HTTP_REFERER
有什么解决办法吗?请帮我
您可以在 403 处理程序 php 代码中使用这两个变量中的任何一个:
$_SERVER["REQUEST_URI"]
或者
$_SERVER["REDIRECT_URL"]