htaccess文件权限问题。
我在根文件夹中有几个扩展名为.php的文件,可以在网站上以example.com/myprofile.php
我在目录(服务)中有另一个文件(myprofileservice.php):example.com/service/myprofileservice.php
在浏览器中访问url: example.com/myprofile.php
时,myprofileservice.php将从后端提供必要的信息。
我想禁用查看php文件但仅限于目录" service"不是根。
通过规则
防止.php文件访问RewriteRule .*\.(php)$ - [F,NC]
阻止example.com/myprofile.php
本身加载,这是不正确的
答案 0 :(得分:1)
尝试:
RewriteRule ^service/myprofileservice.php$ - [F,L]
这将禁止访问单个php文件 service / myprofileservice.php 。