How to make htaccess exceptions?
-
Hi. I have a directory called /photos where I am running a script and it outputs index.php, however it is redirecting back to WP. Is there a way to make an exception to this particularly instance, or preferably, the entire directory? Any help would be much appreciated.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to make htaccess exceptions?’ is closed to new replies.