installing a website into sub domain that requires a specific .htaccess file causes server to redirect to: 403 error.
if .htaccess file is removed, the index.php is served up by server.
However, website will not work without .htaccess file in same directory.
The .htaccess file is:
RewriteEngine on
RewriteBase /a/
RewriteRule ^(.*).html$ index.php?pg=$1 [nc]
RewriteRule ^sitemap.xml$ sitemap.php [L]
RewriteRule ^rssfeed.xml$ rssfeed.php [L]
Any suggestions as to “why” this is happening will be much appreciated.