Abd*_*nan 1 php .htaccess web-hosting codeigniter 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:256 中的 SoftException:文件“/home/fewextra/public_html/index.php”可按组写入
浏览器错误:

知道如何解决吗?到目前为止,我尝试了这个和这个,但没有运气。
注意:当我上传到另一台服务器时相同的项目然后它工作。
您尝试的修复与此消息无关,也不是访问问题。这是说您的权限过于宽松。尝试进行一些更改,然后查看。
更改您的public_htmlto755和 your index.phpto的权限644。