HTACCESS ..从out限制访问xml文件

时间:2012-10-24 06:01:22

标签: .htaccess

我有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]

1 个答案:

答案 0 :(得分:0)

你不需要mod_rewrite:

<Files /db.xml>
   Order Allow, Deny
   Deny from all
</Files>