遇到500内部服务器错误错误

时间:2015-06-02 15:06:49

标签: php .htaccess codeigniter web-hosting remote-server

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

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

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

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

日志错误:

  

Application.cpp中的SoftException:256:文件   “/home/fewextra/public_html/index.php”可按组写入

浏览器错误:
enter image description here

任何想法如何解决? 到目前为止,我尝试了thisthis,但没有运气。

注意:当我上传到另一台服务器然后它运行时,同一个项目。

2 个答案:

答案 0 :(得分:3)

您尝试的修补程序与此消息无关,也不是访问问题。这是说你的权限过于宽松。尝试进行一些更改,然后看看。

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

答案 1 :(得分:1)

这对我有用:

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

Source