Ok, If you don't know from my previous 2 threads, I'm making a site for a client and want to use php includes. I got that done, but I wanted friendly urls, not ones that show up like "www.blah.com/index.php?blah=blah" (it would show up like "www.blah.com/blah" with friendly urls). I found this tutorial to do just that, but I have come across a problem, yet agin. The htaccess file works fine and dandy, but it's the fix for when a user puts a trailing slash after the url. I tried the following and it worked, but there were no css styles applied when the slash was put in:
Any ideas? BTW: my htaccess is exactly how it says in the tut
PHP:
$page = ereg_replace("[^a-z]", "", $page);
Any ideas? BTW: my htaccess is exactly how it says in the tut