1

我的一个朋友继承了一个旧的 Joomla 1.0.x 站点,其中一个是 IE 访问者的大问题。

该网站可在此处查看:http: //intellepark.co.za

如果您使用 Firefox 浏览该站点,则 GET / 响应会弹跳如下:

    1.获取/      
    2. 302到/站点
    3.获取/站点
    4. 301 到 /site/
    5.获取/站点/
    6. 200(或 304)

IE中的问题

在 IE7 中,同样的顺序发生,但在第 6 步,IE 无法正确加载页面并显示“Internet Explorer 无法显示网页”错误页面。

如果我使用 IE6(独立版本)加载同一页面,我会从服务器收到间歇性和格式错误的响应。该文档无法正确下载,但仍会显示直到它收到的最后一个字节。

解决方案?

起初我以为输出有问题,所以:

  • 我检查了 HTML:所有资产 URL 中都有一个双斜杠(例如/site//templates/intellepark/js/mootools.js)。文档类型是 XHTML1,有效,但字符集是拉丁文。
  • 我在 IE 中禁用了 JavaScript,但这会导致相同的行为。

所以现在我怀疑这是一个配置问题。

服务器正在运行以下内容:

    阿帕奇 2.2.9
    Joomla 1.0.12 稳定版
    PHP 5.2

什么会导致 IE 出现这种不良行为?是网址中的双斜杠吗?我可以向我的朋友推荐什么来解决这个问题?

感谢您的帮助 - 如果您需要任何进一步的信息,请告诉我!

--nd

编辑

.htacces 文件的内联粘贴

##  Can be commented out if causes errors, see notes above.
Options +FollowSymLinks

#
#  mod_rewrite in use

RewriteEngine On


#  Uncomment following line if your webserver's URL
#  is not directly related to physical file paths.
#  Update Your Joomla!/MamboDirectory (just / for root)

# RewriteBase /


########## Begin - Joomla! core SEF Section
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (/|\.htm|\.php|\.html|/[^.]*)$  [NC]
RewriteRule ^(content/|component/) index.php
#
########## End - Joomla! core SEF Section

# Block out any script trying to set a mosConfig value through the URL
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
4

1 回答 1

0

我注意到两件事,但我不确定是否是问题所在。

1) 站点提前刷新输出。这很好(实际上很好)。其他资源可以在 index.php 完全加载之前开始下载。但是,根据它的配置方式,它可能会导致 IE 出现一些问题(并且可能与下面的 2 相关)。

要进行诊断,请关闭任何早期输出冲洗,然后看看会发生什么。

2)我注意到的第二件事是计算的校验和与存储的校验和不同,并且由于内容是 gzip 压缩的,IE6 在校验和失败后可能无法解压缩(我不知道 IE 在那种情况下的默认行为是什么)。

无论如何,关闭压缩,看看会发生什么。

希望对您有所帮助,并让我们知道当您禁用其中的每一个(单独和同时禁用)时会发生什么。

于 2009-07-08T01:25:13.103 回答