
Hello,
If you see the error 500 while refreshing page of your website you should try to go to your server and find .htaccess file. Then open it with text editor and try to remove hash signs # fro the lines where it is placed. To make it view like this:
Options +FollowSymLinks +ExecCGI
<IfModule mod\_rewrite.c>
RewriteEngine On
uncomment the following line, if you are having trouble
getting no_script_name to work
RewriteBase /
remove trailing slash
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^(.+)/$
RewriteRule ^(.+)/$ $1 [R=301,L]
turn off index.html, it is for offline mode
RewriteRule ^.*index.html$ index.php [QSA]
no, so we redirect to our front web controller
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>
If it is not helpful please try to contact your hosting provider and ask them to enable mod_rewrite directives on your server.
We have made the same changes to .htaccess file on your server and there is no error 500 now while refreshing pages of your website.
Best regards,
Mathew Brown