我刚刚将我的本地项目(覆盖现有的正常工作)上传到远程服务器。 我的.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”可按组写入
浏览器错误:
任何想法如何解决? 到目前为止,我尝试了this和this,但没有运气。
注意:当我上传到另一台服务器然后它运行时,同一个项目。
答案 0 :(得分:3)
您尝试的修补程序与此消息无关,也不是访问问题。这是说你的权限过于宽松。尝试进行一些更改,然后看看。
将public_html
的权限更改为755
,将index.php
的权限更改为644
。
答案 1 :(得分:1)