.htaccess conflict problem
-
I’m currently running WP 2.0. I have been trying to set up permalinks, and I’m running into some problems. I have the index.php and .haccess files for my blog in the root directory of my server. All other WordPress files are in a /wordpress/ subdirectory (and all of that is set up correctly in the Admin Options). I have set up permalinks to be: /%category%/%postname%/. The .htaccess file is currently:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php
</IfModule># END WordPress
The permalinks work great, and there are no problems with the actual blog. All post titles and categories are linking fine.
However, when I try to access other subdirectories for my site (completely outside of the blog) that already have their own .htaccess files (password protection) within their own directories, I am getting 404 errors when trying to access those pages. These 404 errors are appearing within the template of my blog, so it’s like it’s acting as though those other subdirectories are part of the blog when in fact they are not.
How do I coordinate multiple .htaccess files in different directories to prevent this problem? Please be as exact as possible, as I’m very new at this type of thing.
Thank you!
- The topic ‘.htaccess conflict problem’ is closed to new replies.