Want allow subdirectory (htaccess)
Hi there,
i would like allow index.php in a subdirectory:
http://www.mydomain.com/ is classipress directory with this .htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/?importer/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I need to allow this directory:
http://www.mydomain.com/thefile/index.php (if i actually try this i have classipress 404)
How i must configure .htaccess for that?
Thanks for your help!