Bonjour,

J'utilise un fichier htaccess pour un CMS MODx

Tout semble bien fonctionner mais sous IE8 j'ai un message d'erreur comme si la page n'exstait pas.

pourtant il y a bien un site puisqu'il s'affiche sous FF.

Voici le site www.hello-web.net

Quand je tape www.hello-web.net)
Sous FF (Mac), le visiteur est bien redirigé vers www.hello-web.net/fr/
Sous FF (Seven), ca marche
Sous IE8 (Seven), ca ne marche pas
Sous IE6 (XP) ca ne marche pas
Sous FF (Debian), Ca marche
Sous Opera (mac), ca marche
Sous Safari (Mac),ca marche.

Pour info je vous donne mon fichier htaccess, il est grand.

Auroez-vous une idée??
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
 
# MODX supports Friendly URLs via this .htaccess file. You must serve web
# pages via Apache with mod_rewrite to use this functionality, and you must
# change the file name from ht.access to .htaccess.
#
# Make sure RewriteBase points to the directory where you installed MODX.
# E.g., "/modx" if your installation is in a "modx" subdirectory.
#
# You may choose to make your URLs non-case-sensitive by adding a NC directive
# to your rule: RewriteRule ^(.*)$ index.php?q=$1 [L,QSA,NC]
 
RewriteEngine On
RewriteBase /
 
# Rewrite <a href="http://www.domain.com" target="_blank">www.domain.com</a> -> domain.com -- used with SEO Strict URLs plugin
#RewriteCond %{HTTP_HOST} .
#RewriteCond %{HTTP_HOST} !^example-domain-please-change\.com [NC]
#RewriteRule (.*) http://example-domain-please-change.com/$1 [R=301,L]
#
# or for the opposite domain.com -> <a href="http://www.domain.com" target="_blank">www.domain.com</a> use the following
# DO NOT USE BOTH
#
#RewriteCond %{HTTP_HOST} .
#RewriteCond %{HTTP_HOST} !^www\.example-domain-please-change\.com [NC]
#RewriteRule (.*) http://www.example-domain-please-change.com/$1 [R=301,L]
 
 
 
# Rewrite secure requests properly to prevent SSL cert warnings, e.g. prevent 
# <a href="https://www.domain.com" target="_blank">https://www.domain.com</a> when your cert only allows <a href="https://secure.domain.com" target="_blank">https://secure.domain.com</a>
#RewriteCond %{SERVER_PORT} !^443
#RewriteRule (.*) https://example-domain-please-change.com.com/$1 [R=301,L]
 
 
# This has been commented on the 16-june-2011 due to Bebl configuration
## # The Friendly URLs part
## RewriteCond %{REQUEST_FILENAME} !-f
## RewriteCond %{REQUEST_FILENAME} !-d
## RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
 
# Added on the 16-june-2011 due to Babel configuration
# The Friendly URLs part
# detect language when requesting the root (/)
RewriteCond %{HTTP:Accept-Language} !^fr [NC]
RewriteRule ^$ fr/ [R=301,L]
RewriteRule ^$ en/ [R=301,L]
 
# redirect all requests to /en/favicon.ico and /de/favicon.ico
# to /favicon.ico
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(fr|en)/favicon.ico$ favicon.ico [L,QSA]
 
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(fr|en)/manager/templates/helloweb(.*)$ manager/templates/helloweb$2 [L,QSA] 
 
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(fr|en)/images(.*)$ images$2 [L,QSA] 
 
# redirect all requests to /fr/assets* and /en/assets* to /assets*
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(fr|en)/assets(.*)$ assets$2 [L,QSA]
 
# redirect all other requests to /fr/* and /en/*
# to index.php and set the cultureKey parameter
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(fr|en)?/?(.*)$ index.php?cultureKey=$1&q=$2 [L,QSA]
# END OF Add du to Babel configuration...
 
 
 
# Make sure .htc files are served with the proper MIME type, which is critical
# for XP SP2. Un-comment if your host allows htaccess MIME type overrides.
 
#AddType text/x-component .htc
 
 
 
# If your server is not already configured as such, the following directive
# should be uncommented in order to set PHP's register_globals option to OFF.
# This closes a major security hole that is abused by most XSS (cross-site
# scripting) attacks. For more information: <a href="http://php.net/register_globals" target="_blank">http://php.net/register_globals</a>
#
# To verify that this option has been set to OFF, open the Manager and choose
# Reports -> System Info and then click the phpinfo() link. Do a Find on Page
# for "register_globals". The Local Value should be OFF. If the Master Value
# is OFF then you do not need this directive here.
#
# IF REGISTER_GLOBALS DIRECTIVE CAUSES 500 INTERNAL SERVER ERRORS :
#
# Your server does not allow PHP directives to be set via .htaccess. In that
# case you must make this change in your php.ini file instead. If you are
# using a commercial web host, contact the administrators for assistance in
# doing this. Not all servers allow local php.ini files, and they should
# include all PHP configurations (not just this one), or you will effectively
# reset everything to PHP defaults. Consult <a href="http://www.php.net" target="_blank">www.php.net</a> for more detailed
# information about setting PHP directives.
 
#php_flag register_globals Off
 
 
 
# For servers that support output compression, you should pick up a bit of
# speed by un-commenting the following lines.
 
#php_flag zlib.output_compression On
#php_value zlib.output_compression_level 5
 
 
 
# The following directives stop screen flicker in IE on CSS rollovers. If
# needed, un-comment the following rules. When they're in place, you may have
# to do a force-refresh in order to see changes in your designs.
 
#ExpiresActive On
#ExpiresByType image/gif A2592000
#ExpiresByType image/jpeg A2592000
#ExpiresByType image/png A2592000
#BrowserMatch "MSIE" brokenvary=1
#BrowserMatch "Mozilla/4.[0-9]{2}" brokenvary=1
#BrowserMatch "Opera" !brokenvary
#SetEnvIf brokenvary 1 force-no-vary