Currently this is my .htaccess
RewriteEngine on
#rewrite the url's
RewriteRule ^(.*)$ index.php?url=$1 [L,QSA]
So, from the index i render a template, and give it a url.
Normally a page would look like this www.whatever.com/?url=test/page
But with the rewrite it goes www.whatever.com/test/page
So the question is {
I have an admin section of the site that I want unaffected by this. So, /admin needs to access the admin folder in the folder tree. Thanks for the help
-Wes