Zen Follower
- Join Date:
- Jul 2007
- Location:
- Jakarta
- Posts:
- 346
- Plugin Contributions:
- 0
mydomain.com/store/ VS www.mydomain.com/store/
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' :unsure:- 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 filescurrently my .htaccess file in my nahidfashions.com/ root is as follows:
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
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
define('HTTP_SERVER', 'http://nahidfashions.com');
define('HTTPS_SERVER', 'https://nahidfashions.com');
What should be changed to make everything consistent and to ensure that my .htc files are accessed without error on all browsers?