对不起,我的英语不好 :)
我有个问题。
如何在我的网站中阻止错误页面或重定向尝试访问子文件夹的用户?我不需要受密码保护的文件夹,而只是显示所有子文件夹的错误。
例子:
www.mysite.com/folder - 此文件夹内容不应对用户可见
对不起,我的英语不好 :)
我有个问题。
如何在我的网站中阻止错误页面或重定向尝试访问子文件夹的用户?我不需要受密码保护的文件夹,而只是显示所有子文件夹的错误。
例子:
www.mysite.com/folder - 此文件夹内容不应对用户可见
这是一个简单的解决方案,无需编辑 .htaccess 文件。
在您的文件夹中创建一个新的 index.html 或 index.php 文件并将这些行写在正文上。
在 PHP 中:
<?php
header("Location:../index.php");
?>
在 HTML 中:
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="1;url=http://www.yourDomainName.com">
<script language="javascript">
window.location.href = "http://youDomainName.com"
</script>
<title>Page Redirection</title>
</head>
<body>
If you are not redirected automatically, follow the <a href='http://www.yourDomainName.lk'>link to Your domain name home page</a>
</body>
</html>
通过这种方式,您可以阻止
www.yourDomain.com/img
文件夹
www.yourDomain.com/css
文件夹和您希望轻松拒绝访问的其他文件夹。我不知道黑客仍然可以绕过这些文件,但这是简单的解决方案。试试这个,看看自己的答案。