it's so easy to get such sexy URL's...
The last line in your .htaccess file, change that to:
Code: Select all
RewriteRule ^(.+)\/$ index.php?page=$1 [QSA]
and then in your config.php, change the page extension to:
Great results huh?
About the design: the client wanted a straightforward, no hassle design without any visual things that could distract you from the contents...
// EDIT //
There are some slight problems with this though..
www.site.com/targetfolder is
NOT the same as
www.site.com/targetfolder[b]/[/b]!!! So you always have to link with the slash at the end of your links!
And linking to the adminpanel with
www.site.com/admin wont work anymore either... you gotta link to
www.site.com/admin/index.php or login.php
Warning: This DOES wreck the Redirect functionality of cPanel!!!! It messes up the system and adds and unwanted ?page= after each link. So make sure you are either not using cPanel, or at least not the redirect functionality!
// EDIT //