Hi everyone,
I've uploaded a folder to a wordpress site. I'd like to access it e.g http://my.url.com/myfolder
The problem is wordpress' .htaccess file which assumes I'm trying to load a page or post and doesn't load the folder.
If you were in my boots, what would you do to overcome this situation?
My .htaccess looks like so:
Options +FollowSymLinks
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress