2.7.1.1.1. Unsupported Options
The cause of error 500 on the site may be the presence in the file .htaccess unsupported parameters. Check the contents of this file and, if necessary, make the appropriate changes to it:
Options +FollowSymLinks
— needs to be replaced withOptions +SymLinksIfOwnerMatch
.Options All -Indexes
- needs to be replaced withOptions -Indexes
.+ExecCGI
- you need to delete.AllowOverride
with any parameters — you need to delete.
The hosting does not use the Apache module mod_version
, so if in .htaccess there are blocks with directives IfVersion
they should also be removed, leaving only the contents of the Apache 2.4 blocks.
Also on the hosting you cannot use RewriteMap
. If the goal is, for example, to convert the URL to lowercase, it is better to solve this problem by adding the appropriate directives directly to the site's PHP scripts.
To make changes to the file, you can use filemanager or any FTPclient.