I have just upload my local project(overwrite existing one that was working correctly) to remote server .
my .htaccess looks like:
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
log error:
SoftException in Application.cpp:256: File "/home/fewextra/public_html/index.php" is writeable by group
Browser Error:
any idea how to fix ? I tried this and this so far but no luck .
Note: the same project when i upload to another server then it works.