I have a WordPress install and a .htaccess that looks like this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I tried installing a fresh install of WordPress into a subdirectory for a seperate blog and am getting 404's within the root WordPress when I try to view it. I'm assuming this is because of the htaccess, and what I want to know is, how do I change it so that I can view the subfolder? Thanks :)