Pretty URL's not followed when logging off

Permalink
v5.7.0.1
When logging off a user, I am directed to "/index.php" rather than "/"
Just a minor point, but it seems that it should link to the correct location.

 
andrew replied on at Permalink Reply
andrew
This is done by design – we keep index.php in CMS paths (like the dashboard, etc...) in case you enable pretty URLs and your server is misconfigured. In this case, you still have the ability to reverse course and re-enable them.

If you want all paths, front-end and backend, to lose index.php, open application/config/concrete.php (or create it if one doesn't exist) and add this code to it:

<?php
return array(
    'seo' => array(
        'url_rewriting_all' => true
    )
);