现在,我在整个经销商帐户的一个站点中收到此消息:禁止访问



它突然发生了。我尝试将根 htaccess 重命名为其他任何内容,但错误仍然存​​在,我什至尝试为文件设置 744 权限,仍然是同样的事情。当前,该文件使用默认文件权限 644。
错误发生在:http://lucrebem.com.br

最佳答案

您需要在 apache 配置中添加一个 <Directory

<Directory "/path/to/source/file/directory/www">
    Options Indexes FollowSymLinks
    AllowOverride all
    Require all granted
</Directory>

这将授予所需的权限

关于php - Forbidden 您无权访问/在此服务器上。服务器无法读取 htaccess 文件,拒绝访问是安全的,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32303895/

10-16 18:23
查看更多