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?
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,
)
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 :)