If I'm trying to unblock my /gallery and /blog directories, does the following look correct for the .htaccess file:
# Don't rewrite gallery and blog directories
RewriteCond %{REQUEST_URI} !/gallery.* [NC]
RewriteCond %{REQUEST_URI} !/blog.* [NC]
If this is correct, it's not working. What am I doing wrong?




