I have a standard Drupal installation with WordPress to handle blog part.
Structure is example.com will be drupal installation
example.com/blog/ is WordPress installation.
When i browse to a url like example.com/blog/my-wp-url it throws a 404 error which is from Drupal.
How to get rid of it ?
From http://drupal.org/node/30334 :
The trick is to modify .htaccess to ignore specific files/folders.
I would set your Drupal
.htaccessto the followingRewriteCond %{REQUEST_URI} "/blog/"
RewriteRule (.*) $1 [L]
And put this code right below