I have loaded ezPublish and it includes an .htaccess file to be included in the top folder of the webroot. I am using mod_vhost and find that I have a problem in the initial browser contact to the site...
results in a 403 error, while
results in the site running normally.
Here is the .htaccess file, I don't see the reason.
All help appreciated.
Hosting Solutions for Home or Business.
results in a 403 error, while
results in the site running normally.
Here is the .htaccess file, I don't see the reason.
Code:
<FilesMatch ".">
order allow,deny
deny from all
</FilesMatch>
<FilesMatch "(index\.php|\.(gif|jpe?g|png|css|js|html)|var(.+)storage.pdf(.+)\.pdf)$">
order allow,deny
allow from all
</FilesMatch>
RewriteEngine On
RewriteRule !\.(gif|jpe?g|png|css|js|html)|var(.+)storage.pdf(.+)\.pdf$ index.php
DirectoryIndex index.php
All help appreciated.
Hosting Solutions for Home or Business.