答案 0 :(得分:0)
这似乎是.htaccess或文件夹权限问题。
如果使用的是apache,请确保生成的.htaccess文件具有正确的权限。
您可以(linux)使用此bash命令快速修复权限(确保在最后一个命令中更新apache用户,将其设置为centos / redhat使用的apache用户,以将ubuntu更改为www-data)
find . -type d -exec chmod 0755 {} \; && find . -type f -exec chmod 0644 {} \;
chmod -R 775 cache custom modules themes data upload config_override.php config.php
chown -R apache:apache .