我正在尝试创建一个php登录脚本,以便我的index.php在pubic_html中,而qustinaire.php在外面,因此无法通过url直接访问它。我认为index.php应该具有访问权限,以便我可以使用标题(" location:login_success.php")但我失败了。我怎么能绕过这个?
答案 0 :(得分:0)
Files
| - public_html
| - index.php
| - qustinaire.php
| - login_success.php
从index.php
到达login_success.phpheader("location:../login_success.php");
或其他选项是:
header($_SERVER["DOCUMENT_ROOT"] . "/login_success.php";
DOCUMENT_ROOT将从根目录返回路径:
/var/users/homepages/USER_ID/