I have a application in the root directory of a website that has its own apache2 mod-rewrite rules e.g.
RewriteRule ^/([^/]*)/([^/]*)/$ /index.php?page=$1&var1=$2
RewriteRule ^/([^/]*)/$ /index.php?page=$1
Thats fine but now I want to install Wordpress in a the subdirectory /blog. Wordpress of course has its own rewrite statements in the .htacess file that rewrites urls differently for the blog.
How can I tell the root .htaccess file to skip over the /blog/ directory and allow the local .htaccess mod-rewrite to still work when browsing int the blog directory.