View Single Post
Old 02-22-2009, 07:22 AM   #2 (permalink)
jlodell
The Wanderer
 
Join Date: Feb 2009
Posts: 7
Thanks: 0
jlodell is on a distinguished road
Default

i use something along the lines of the following...

Code:
RewriteEngine on
Options FollowSymLinks
## IF 
## URL does not exist
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
## THEN
## Rewrite to bootstrap
RewriteRule ^(.*)$ index.php/$1 [PT,L,QSA]
jlodell is offline  
Reply With Quote