Pretty URL not working

Permalink
I want to enable 'pretty URL'. When I have checked the option, 'index.php' is removed but the pages are not visible (only when adding 'index.php'). Only the homepage is directly visible.

(When trying to get back and uncheck the option 'pretty url', the navigation of CMS is not working. Works again when uncheck the 'pretty url' option.)

Error:
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at webmaster@##### to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.


I manually added the folowing .htaccess document in the root of the private_html (https://):
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /concrete/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
</IfModule>


It does not work. Any ideas what could be going wrong. I am using version 8.1.0.

Thanks

 
hutman replied on at Permalink Reply
hutman
Check your server's error log, it might not support mod_rewrite