I tried to remove index.php from the URL of the Magento website: _Back to “Use rewrite of the web server” _ Set permission 755 to the necessary files and folders _ make sure the rewrite mode is on _ configure the htaccess file. comment, uncomment allow symbolic links, change the rewrite base from / magento / to / or / var / www / hosts / www.domainname.com / or / hosts / www.domainname.com / or / www.domainname.com / _reindex, cache flash
But all the results lead to an internal error of 500 servers. In the log file, I see:
[Fri Apr 20 11:11:59 2012] [error] [client 88.87.40.140] client denied by server configuration: /var/www/hosts/www.nordocks.no/app/etc/local.xml
[Fri Apr 20 11:12:07 2012] [error] [client 117.5.178.168] Request exceeded the limit of 10 internal redirects due to probable configuration error.
And this is my .htaccess
DirectoryIndex index.php
<IfModule mod_php5.c>
php_value memory_limit 256M
php_value max_execution_time 18000
php_flag magic_quotes_gpc off
php_flag session.auto_start off
php_flag suhosin.session.cryptua off
php_flag zend.ze1_compatibility_mode Off
</IfModule>
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
<IfModule mod_deflate.c>
Please give me instructions on how to handle this error.
source
share