I'm trying to get consistent behavior across browsers when it come to the URL of my site because this seem to be affect .htc file access which makes IE6 act a little 'weird' 
- css menus not working on initial load but work after navigating (includes/csshover.htc)
- A transparent png fix doesn't work on initial load but works after navigation. (includes/iepngfix.htc)
- Access denied error on both .htc files
currently my .htaccess file in my nahidfashions.com/ root is as follows:
Code:
Options All -Indexes
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^nahidfashions\.com [NC]
RewriteRule ^(.*)$ http://www.nahidfashions.com/$1 [R=permanent,L]
the .htaccess in my nahidfashions.com/boutique/ root is as follows
Code:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /boutique/
*** SEO RULES REMOVED FOR SIMPLICITY ***
## the following makes sure the correct mime type is sent for the .htc file
AddType text/x-component .htc
my configure.php file has
Code:
define('HTTP_SERVER', 'http://nahidfashions.com');
define('HTTPS_SERVER', 'https://nahidfashions.com');
I've played with this allot and can't seem to get something satisfactory.
What should be changed to make everything consistent and to ensure that my .htc files are accessed without error on all browsers?