0

我有 xml 文件。我用它作为数据库。我怎样才能限制对这个文件的访问..我检查了多个选项它的工作但所有者(网站)也无法访问这个 xml 文件..

我如何限制从外部访问此文件,但网站可以使用此 xml..

我已经检查过了

chmod 700

ErrorDocument ### index.php -- Example of format 
ErrorDocument 404 /index.php -- Working example
php_flag display_startup_errors off
php_flag display_errors off
php_flag html_errors off
RewriteCond %{HTTP_REFERER} !^http://(www\.)?site\.com(.+) [NC]
RewriteRule .*\.(xml)$ - [F]
4

1 回答 1

0

你不需要 mod_rewrite 为此:

<Files /db.xml>
   Order Allow, Deny
   Deny from all
</Files>
于 2012-10-24T06:06:41.237 回答