I\'m writing a front-controller that will handle page requests, by parsing
$_SERVER[\'REQUEST_URI\'].
I would like to get all requests routed t
You could try something like this :
RewriteCond %{REQUEST_URI} !^/dir_under_rootdocument/index\.php RewriteCond %{REQUEST_URI} !\.(gif|jpg|png|js|css)$ RewriteRule (.*) dir_under_rootdocument/index.php/$1 [L,QSA]