0

我有一个要限制访问的文件夹,但我希望每个人都可以访问多个具有相同开头的文件。我已经阻止了,但我似乎无法让允许文件工作。这就是我所拥有的:

order deny,all
deny from all
allow from 127.0.0.1 
#There's several lines of real IPs here
<FilesMatch "^myfiles*\.php$">
  order Allow,Deny
  Allow from all
</FilesMatch>

是顺序错了还是别的什么?

4

1 回答 1

1

我认为正则表达式不正确,请尝试:

<FilesMatch "myfiles.*?\.php$">
   Satisfy any  
   order Allow,Deny
   Allow from all
</FilesMatch>
于 2013-10-18T13:07:20.227 回答