Removing index.php not working

Permalink
I am using concrete 5.7.4.2. I turned on Pretty Url { Remove index.php from URLs }, the hostname/page works but auto nav still displays hostname/index.php/page. How do I fix this?

 
smjrifle replied on at Permalink Reply
I found the problem application/config/concrete.php wasn't writable
Also I had problem, where the generated file didn't give proper redirect.
So I added this:
'seo' => array(
'canonical_url' => '',
'canonical_ssl_url' => '',
'redirect_to_canonical_url' => 0,
'url_rewriting' => true,
'url_rewriting_all' => true,
)

Now it's working fine :)
Dushka replied on at Permalink Reply
Dushka
Deleted
Dushka replied on at Permalink Reply
Dushka
Have decided to submit this issue as a new topic.
ebirt replied on at Permalink Reply
So is there a current fix on this?