Here is what I posted on the WP forums. It's a bit more cogent and comprehensive.
I have WP installed on the root of my domain and Vanilla 2 installed in a subfolder, /forum. WP seems to work fine before and after the Vanilla 2 install but Vanilla 2 has been troublesome.
Here is the .htaccess residing in the root folder: # BEGIN WordPress
# END WordPress With this .htaccess the only way I could get to the forum was by entering the complete URL; http://www.formlovesfunction.com/forum/index.php/. /forum and /forum/index.php would not work.
I'm no .htaccess expert but I managed to fix this problem by appending the following to my .htaccess in the root:
Comments
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
Is it possible to add a rewrite rule to fix my problem?
Any ideas?