我有一个 php 页面“view.php”
但我不希望任何人通过点击或手动输入 www.domain.com/view.php 来直接查看页面,它必须来自 index.php 正在经历一些过程。IE
index.php ==> view.php/id=$$$
我试过$_SERVER['REQUEST_URI'];
if ($_SERVER['REQUEST_URI'] =='www.domain.com/view.php')
header("location: index.php");
但没有工作..
有人可以帮忙吗