Option All not allowed = Magento .htaccess

El CapitanPH

Verified User
Joined
Apr 20, 2018
Messages
29
Hello

I'm trying to install magento on our development server but .. on error log

/home/domainname/domains/domain.com/private_html/development/media/.htaccess: Option All not allowed here, referer: https://development.domain.com/

I try already to change from Options All -Indexes --> Options +SymLinksifOwnerMatch

Still a problem

Default Magento htaccess

Options All -Indexes
<IfModule mod_php5.c>
php_flag engine 0
</IfModule>

AddHandler cgi-script .php .pl .py .jsp .asp .htm .shtml .sh .cgi
Options -ExecCGI

<IfModule mod_rewrite.c>

############################################
## enable rewrites

Options +FollowSymLinks
RewriteEngine on

############################################
## never rewrite for existing files
RewriteCond %{REQUEST_FILENAME} !-f

############################################
## rewrite everything else to index.php

RewriteRule .* ../get.php [L]
</IfModule>



I;m using nginx_apache web server

thanks
 
Last edited:
I have same error but with apache

Option All not allowed here, referer:
 
Back
Top