遇到 500 Internal Server Error 错误

a 500 Internal Server Error error was encountered

我刚刚将我的本地项目(覆盖正常工作的现有项目)上传到远程服务器。
我的 .htaccess 看起来像:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/ [L]  

<Files "index.php">
AcceptPathInfo On
</Files>

RewriteRule    ^username    http://www.google.com
#^([a-zA-Z0-9_-]+)$ user/profile/USERNAME=

日志错误:

SoftException in Application.cpp:256: File "/home/fewextra/public_html/index.php" is writeable by group

浏览器错误:

知道如何解决吗? 到目前为止,我尝试了 this and this,但没有成功。

注意:同样的项目,当我上传到另一台服务器时就可以了。

您尝试的修复与此消息无关,也不是访问问题。这是说您的权限过于宽松。试着做一些改变,然后看看。

public_html 的权限更改为 755,将 index.php 的权限更改为 644

这对我有用:

将目录权限更改为 755 和 php 文件及其他文件 到 644

Source