Hi,
I have a wordpress blog and I have folder called data that needs to be accessible, the problem is my url rewrite is not allowing access.
Because of url rewriting it things that the url to the directory needs to be re-writen and thus it can't find it.
For example I have urls like this:
http://www.domain.com/this-is-a-post
But when I visit
http://www.domain.com/data/file.php (file.php exists inside a folder called data in the root of my host) - i can't access it because it thinks it's a rewritten url.
Here's my htaccess, I'm pretty sure it's correct:
Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
anyone know why it's not working?