I need that the css flyout header work also with previous version od IE.
I add the code to the .htaccess like it's writen in the readme, but it doesn't work.
I have installed also the simple SEO module.
Maybe my code is not combined well.
Here is my .htaccess file:
PHP Code:
#### BOF SSU
Options +FollowSymLinks -MultiViews
RewriteEngine On
# Make sure to change "test_site" to the subfolder you install ZC. If you use root folder, change to: RewriteBase /
RewriteBase /
# Deny access from .htaccess
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
#### EOF SSU
#### BOF SSU
Options +FollowSymLinks
RewriteEngine On
# Change " RewriteBase / to the correct setting
# if your site is located at root folder, then you should have RewriteBase /
# Go to your include/configure.php, this value should be the same with the value of DIR_WS_CATALOG
RewriteBase /
# Deny access from .htaccess
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{SCRIPT_FILENAME} -f [OR]
RewriteCond %{SCRIPT_FILENAME} -d
RewriteRule .* - [L]
RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L]
#### EOF SSU
#### BOF CSS FLASH HEADER
RewriteEngine On
RewriteCond %{HTTP_HOST} ^basicinstinctlingerie.com$ [NC]
RewriteRule ^(.*)$ http://www.basicinstinctlingerie.com/$1 [R=301,L]
#### EOF CSS FLASH HEADER
Thank's for your help!