Pretty URL problem/I want to get rid of index.php

Permalink
I am having a trouble with the links on my website. I have a few templates set up in my theme... When I click fromhttp://www.theresaberg.com/index.php/wine-list... to MENU (in the nav) it tacks on menu.html to the end of index.php though my menu.html file is located outside of my theme folder. (As a side note, I have a few files that I don't want to be editable as .html files in my root folder.) The link is set up to directly to menu.html but the index.php just jumps in there. I added the code for pretty URLs into my .htaccess file but it's not working. Sigh. Any help?

Thanks

 
Mainio replied on at Permalink Reply
Mainio
Put "/" before the file name in the link if you really want to link to those static files.

So:
<a class="nav" href="/menu.html">Menu</a>


Instead of:
<a class="nav" href="menu.html">Menu</a>


However, I really see no reason why you wouldn't run these pages in concrete5 because you can always control through permissions which users can edit which pages.

More on this:
http://www.concrete5.org/documentation/general-topics/simple-permis...