PHP 文件权限
我刚刚启动了一个 ec2 服务器并将所有 php 代码放在服务器上,我需要更改权限,以便用户无法访问像 http:example.com/admin
这样的网站并查看列表php 文件....我需要更改整个文件夹或每个文件的权限,还是有一个可以工作的递归 -R
命令...我认为它们目前都是 777 。 ..这很糟糕
I just launched an ec2 server and put all the php code on the server and I need to change the permissions so that a user cant go to the site like http:example.com/admin
and see the list of php files....Do I need to change the permissions on the entire folder or each file or is there a recursive -R
command that will work ...I think they are all currently 777 ...which is bad
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
假设您只想禁用文件列表,而不是访问文件本身,那么您需要禁用 Apache 中该文件夹的 INDEXES 选项。 apache 配置中类似的东西可能是最好的。
Assuming you want to disable just the listing of files, and not access to the files themselves, then you'll want to disable the INDEXES option in Apache for that folder. Something like this in the apache config would probably be best.
如果您的网站位于网络服务器根目录下的 admin 文件夹中,您可以在 admin 根目录中放置一个 .htaccess 文件,其中包含:
If your website is in an admin folder in the root of your webserver you can drop a .htaccess file in the admin root containing:
尝试插入此 PHP 代码:
或使用密码
,然后转到 admin.php?mypasswordhere
(这不是暴力证明,因此请使用非常强的密码)
Try inserting this PHP code:
or use a password
then go to admin.php?mypasswordhere
(this isn't brute force proof so use a very strong password)