[Pretty URL's] Cant get the homepage to display "home"

Permalink
Hi all,

I have put the pretty urls on, but cant get the homepage to display "home" instead i get "index.php?cID=1".

The rest of the pages are working just fine.

Can somebody help me with this?

Thanks in advance!

 
synlag replied on at Permalink Reply
synlag
Have you copied the code to .htaccess file like described at

http://www.concrete5.org/documentation/installation/installing_conc...

?
Robert2010 replied on at Permalink Reply
Hi synlag,

Yes, this is my .htaccess:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /new/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
esand replied on at Permalink Reply
Does it display correctly when you're logged out? I find that it always displays the "cID=" part when you're logged in and "view" a page.

Alternatively, I've noticed that calls to $this->url() seem to generate urls that include index.php in them even if friendly urls is enabled. Perhaps some code you have is using that function and creating non-friendly urls?