我的初始.htaccess只允许访问目录中的非php文件:
Order deny,allow
Deny from all
<Files ~ ".(xml|css|jpe?g|png|gif|js|pdf)$">
Allow from all
</Files>
我想允许现在访问一个特定的php文件(来自.htaccess foo / bar / baz.php的相对路径)
尝试添加
<Files foo/bar/baz.php>
order deny,allow
Allow from all
</Files>
也尝试了
<Files ~ "(baz)$">
order deny,allow
Allow from all
</Files>
如何为这个文件添加访问权限?
答案 0 :(得分:8)
你可以尝试:
Order deny,allow
Deny from all
<Files ~ "\.(xml|css|jpe?g|png|gif|js|pdf)$">
Allow from all
</Files>
<Files ~ "baz\.php$">
Allow from all
</Files>