I have a local wordpress install at local.mysite (OSX Mountain Lion with my own Apache, not MAMP etc)
In the root directory for local.mysite I have sub directories /Wordpress and /question2answer.
Wordpress is installed and working at http://local.mysite and I have followed the wordpress integration instructions. If I navigate to local.mysite/question2answer in order to install q2a I get a 404 error page styled as a Wordpress page and am not directed to the installer for q2a
What have I missed? Wordpress version is 3.7
Q2A .htaccess :
DirectoryIndex index.php
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /
RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
RewriteRule . %1/%2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php?qa-rewrite=$0&%{QUERY_STRING} [L]
</IfModule>
.htaccess for wordpress:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
It seems to me that .htaccess rules would need to be changed for this setup but there is no mention of this in the wordpress integration guide.