.htaccess file, IE does not work Firefox, Safari & Chrome works

I created the site in Interspire Web Publisher and it works fine, it seems to work in Firefox, Safari and Chrome, but when I started Internet Explorer 7 and 8, only the home page works, all links to other pages show nothing.

Do you think this might have something to do with the .htaccess file? But why does this work at some point and not at another? I made a test new site (with its database) with 3 small pages, and it worked fine in Internet Explorer ... very weird!

my website: http://www.artandepilepsy.com

+3
source share
2 answers

, (Internet Explorer) .htaccess? - , . , , , .htaccess.

+1

, , ... , , , Safari, Firefox Chrome ( , Webkit (). -? Interspire, , !

Interspire ( CMS) Internet Explorer, . : http://www.artandepilepsy.com/version2/ ( ), .

.htaccess :

# Options:
# -MultiViews: Turns off multiviews so it doesn't interfer with our rewrite rules
# -Indexes: Stop directory listings
# +FollowSymlinks: Let out rewrite rules work

Options -MultiViews -Indexes +FollowSymlinks

# Disable any sending of a default character set
AddDefaultCharset OFF

# Disable etags -- less headers

RewriteEngine On
# RewriteBase /

<IfModule mod_security.c>
    # Turn off mod_security filtering.  
    SecFilterEngine Off

    # The below probably isn't needed, but better safe than sorry.
    SecFilterScanPOST Off
</IfModule>

<IfModule mod_deflate.c>
    AddOutputFilterByType DEFLATE application/x-javascript application/javascript text/css text/ html text/xml
</IfModule>


# PHP is in CGI Mode, so we need a different mod_rewrite
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php [L]
+1

Source: https://habr.com/ru/post/1749021/


All Articles