如果有人在网址中输入,例如www.example.com/images,如何从带有图片的文件夹重定向?我意识到我需要在该文件夹中使用index.php,但要放入什么?有人会说,“对不起,你不应该在这里,我会打电话给警察”,然后重定向到主页?
答案 0 :(得分:0)
不要将任何内容重定向到Web服务器的根目录
<?php
header("Location: /\n\n");
答案 1 :(得分:0)
只需使用这样的东西。 '5'是5秒,可以更改为任何内容。
<html>
<head>
<meta http-equiv="refresh" content="5;url=http://www.google.com">
<title>Redirect...</title>
</head>
<body>
You are not allowed to access this area. (Will redirect in 5 seconds)
</body>
</html>