I have a WordPress installation in my site root (ex. http://www.mydomain.com). I’m confronted with a situation where I need to be able to access subfolders & files, that are not related to WordPress. (http://www.mydomain.com/mysubfolder). I always get an error “forbidden”. I’m guessing my WordPress/htaccess isn’t allowing this.
My currect htaccess:
# BEGIN 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>
# END WordPress
How can I achieve this?