我有一个Block指定的路径。
例如http://example.com/image
或http://example.com/file.php
,有人去此路径时需要显示you dont have permission
或重定向另一页。.如何为Php ..给我一个很好的例子。
答案 0 :(得分:0)
您可以在每个目录中添加index.php文件,以防止直接访问。在index.php内添加
echo "<script>location.href='your_redirect_path';</script>"; or
header("Location: your_redirect_path");
exit;