我有一个
http://example.com/DL/
任何人都可以免费访问的目录,现在我想拒绝未经授权的用户访问,所以我用代码编写了非常简单的 index.php
<?php
include('config.php');
session_start();
$result = (mysql_query("SELECT * FROM accounts WHERE hash='".$_SESSION['hash']."' ");
$row = mysql_fetch_array(result);
if($row['access']) {
return true;
} else {
header("location: /login.php");
}
?>
问题:有没有办法设置 .htaccess 来检查 index.php 是否在每次用户请求时返回 true
http://example.com/DL/*
?