
Originally Posted by
mygalaxy
Would anyone be able to tell me what the .htaccess file in the root folder is supposed to contain by default? I overlooked the IE6 details in the readme, so after going back and adding those lines of code, I think the original .htaccess was written over by accident. Currently, it only contains the suggested code in the additions_to_htaccess.
My drop down menu is not working in IE6, so I'm hoping to fix the .htaccess file.
This is what my .htaccess on my test site looks like, just change it to your website address:
Code:
## Add these to your .htaccess file so that only one way to your site exists, either http://yoursite.com and http://www.yoursite.com ... the following adds the www if it's missing:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^zencart137.jadetrue.com$ [NC]
RewriteRule ^(.*)$ http://www.zencart137.jadetrue.com/$1 [R=301,L]
## If you'd like your site to go to http://mysite.com instead of http://www.mysite.com, add these changes instead:
##RewriteEngine On
##RewriteCond %{HTTP_HOST} ^www.yoursite.com$ [NC]
##RewriteRule ^(.*)$ http://yoursite.com/$1 [R=301,L]
## the following makes sure the correct mime type is sent for the .htc file
AddType text/x-component .htc
Bookmarks