Cannot access WordPress install on subdirectory of drupal site

It sounds like your .htaccess file isn’t configured correctly. Your root level htaccess file will take priority over the one in the WordPress folder.

Try telling Drupal to ignore your subfolder by adding this to the rewrite statement at toward the bottom (of the default Drupal .htaccess file), after the line that says “ReWrite Engine On”

RewriteCond %{REQUEST_URI} !^blog

where “blog” is the subfolder that you’ve installed WordPress to.

Leave a Comment