decepti0n
Feb 2nd 2008, 3:34 pm
RewriteEngine On
RewriteCond %{REQUEST_URI} !^(forum|images) [NC]
RewriteRule ^(.*)$ core.php
I want to redirect everything to core.php, unless it is in a few different directories (in this case forum/ or images/), but that doesn't seem to work
In other words,
/f/f/f -> core.php
/foru2m/index -> core.php
/forum/index.php -> stays normal
/images/image.png -> stays normal
Thanks for any help
RewriteCond %{REQUEST_URI} !^(forum|images) [NC]
RewriteRule ^(.*)$ core.php
I want to redirect everything to core.php, unless it is in a few different directories (in this case forum/ or images/), but that doesn't seem to work
In other words,
/f/f/f -> core.php
/foru2m/index -> core.php
/forum/index.php -> stays normal
/images/image.png -> stays normal
Thanks for any help