02-22-2009, 07:22 AM
|
#2 (permalink)
|
|
The Wanderer
Join Date: Feb 2009
Posts: 7
Thanks: 0
|
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]
|
|
|
|