htaccess允许访问一个PHP文件

时间:2014-01-07 17:31:23

标签: php regex apache .htaccess

我的初始.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>

如何为这个文件添加访问权限?

1 个答案:

答案 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>