您好,我对配置了解不多.htaccess
,但我想限制对我的 Web 服务器上的 php 文件的访问,并且我只想index.php
访问参数。
我的文件位于子文件夹中,例如:www.mydomain.com/sub/index.php
. index.php
我希望能够在子文件夹、css 文件和 js 文件中打开它。
这是我到目前为止的配置:
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
<Files /index.php>
Order Allow,Deny
Allow from all
</Files>
<FilesMatch "*\.(css|js)$">
Order Allow,Deny
Allow from all
</FilesMatch>
我试图做类似的事情,<Files sub/index.php>
但每次它限制子文件夹中的所有 php 文件并且www.mydomain.com/index.php
工作正常。
有人可以帮我吗?