I'm trying to migrate a website to a server, the site alredy has a htaccess file with this options:
Options -Multiviews
Options -Indexes
and always returns 500 error with this log on apache error_log
/home/user/public_html/.htaccess: Options not allowed here
I already tried to modify vhost *.conf file and it still not working changing
<Directory "/home/user/public_html">
Options -Indexes -FollowSymLinks +SymLinksIfOwnerMatch
AllowOverride All Options=ExecCGI,Includes,IncludesNOEXEC,Indexes,MultiViews,SymLinksIfOwnerMatch
</Directory>
with this:
<Directory "/home/user/public_html">
Options All
AllowOverride All Options
</Directory>
and several others configurations, even I edited the file /usr/local/apache/conf/httpd.conf
and setted the configuration like this:
<Directory "/home/*/public_html">
Options All
AllowOverride All Options
</Directory>
and still not working.
note: on every change I restarted the httpd service or rebooted the server