I have links and files set up in a subdirectory off of my wordpress in the root of my domain. If I try to access them the .htaccess rules for the permalinks force a 404 error to the wordpress. Here's the .htaccess file # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^stuff/*. - [L] #I've tried a ton of different ways with this line RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress The stuff subdirectory is a symbolic link to where I want visitors to go and I've tried a million ways to get it to work. Anyone have an idea how to make it work?