yettaclark
New Member
I have a .htaccess file with the typical wordpress mod_rewrite:\[code\] <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /blog/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /blog/index.php [L] </IfModule> # END WordPress\[/code\]However I need to allow a certain page to not get redirected. that being 'domain/ee'I tried adding:\[code\]RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -fRewriteRule ^ %{DOCUMENT_ROOT}%{REQUEST_URI} [L]\[/code\]to the top. As I read it, that should have checked to see if the page existed and if so not run the reset of the rewrite. However it's not working.any ideas? thanks.