4

或者至少pingdom是这么说的,我认为这是一项非常可靠的服务,

笔记:

  1. 阿帕奇:php & mysql
  2. 没有 iframe
  3. 访问:

    #Gzip
    <ifmodule mod_deflate.c>
    AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x- javascript application/javascript
    </ifmodule>
    #End Gzip
    
    
    # 480 weeks
    <FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|css|swf)$">
    Header set Cache-Control "max-age=290304000, public"
    </FilesMatch>
    
    # 1 weeks
    <FilesMatch "\.(js)$">
    Header set Cache-Control "max-age=604800, public"
    </FilesMatch>
    
    RewriteEngine On
    
    
    ErrorDocument 500 /oohps.php
    ErrorDocument 404 /where.php
    
    
    RewriteCond %{HTTP_HOST} ^www.keepyourlinks.com [NC]
    RewriteRule ^(.*)$ http://keepyourlinks.com/$1 [L,R=301]
    
    RewriteCond %{HTTP_HOST} ^www.keepyourlinks.byethost32.com [NC]
    RewriteRule ^(.*)$ http://keepyourlinks.com/$1 [L,R=301]
    
    RewriteCond %{HTTP_HOST} ^keepyourlinks.byethost32.com [NC]
    RewriteRule ^(.*)$ http://keepyourlinks.com/$1 [L,R=301]
    
    RewriteCond %{HTTP_HOST} ^keepyourlinks.com/pre/ [NC]
    RewriteRule ^(.*)$ http://keepyourlinks.com/$1 [L,R=301]
    
    RewriteCond %{HTTP_HOST} ^piscolabis.info$
    RewriteCond %{REQUEST_URI} ^/keepyourlinks.com [NC]
    RewriteRule ^(.*)$ http://keepyourlinks.com/$1 [L,R=301]
    
    
    #Webs Sueltas
    
    RewriteRule ^facebook-likes$ fbmate.html
    RewriteRule ^api_webmasters$ API.php
    
    
    
    #Options +FollowSymLinks
    
    
    
    RewriteBase /
    
    RewriteRule ^keep/(.+)/(.+) link1.php?id=$1
    RewriteRule ^article/(.+)/(.+) ?tipo=questions&que=view&id=$1
    RewriteRule ^file/(.+)/(.+) ?tipo=files&que=view&id=$1
    RewriteRule ^user/(.+)/(.+) ?que=usuario&id=$1
    
    RewriteRule ^categories/(.+)/(.+) listarenlaces.php?id=$1
    

我只是在寻找可能的原因

4

4 回答 4

6

与您的 .htaccess 无关

仔细阅读您的网站代码。您的“上次活动”部分中包含以下内容:

<img src="http://keepyourlinks.com/" width="30" height="30"/>

...您正在将整个页面再次加载到图像标签中。

更多上下文,以帮助您找到生成它的位置:

<div class="comentario">
    <a href="http://keepyourlinks.com/user/736/laroma">
        <img src="http://keepyourlinks.com/" width="30" height="30"/> laroma
    </a>
    <span class="suave"> ha comentado </span>
    <a href="http://keepyourlinks.com/keep/186577/deshidratacion">deshidratacion</a>
    <span class="fecha"> 72 dias:</span>
    <p>
        La deshidratación es la pérdida excesiva de agua respecto al agua que se ingiere. El European Hydration Institute (EHI) es una fundación creada con el fin de avanzar y profundizar en el conocimiento acerca de la hidratación humana y sus efectos sobre la salud, el bienestar y el rendimiento físico y cognitivo.
    </p>
</div>
于 2012-03-22T16:34:25.957 回答
5

这是旧的,但我刚刚遇到了类似的问题。问题在于 div 类中的 css。我有一个background:url();作为占位符(打算稍后提供图像)但忘了它。

使用空白背景 url,FF19 会出现页面加载两次问题。我注意到使用 LiveHTTPheaders 的问题。尚未使用其他浏览器/版本进行测试。删除它可以解决问题。重新添加它会重复地重新引入该问题。

于 2014-05-26T22:44:04.140 回答
1

只是想分享我遇到同样问题的情况。

我忘记了一行代码,它为背景图像创建了具有内联样式的 div 元素,并且它使用了未定义的变量:

style="background-image: url( <?php echo $image_url ?>)"

这条打印错误消息的样式而不是 url 并且该元素第二次加载了我的页面,因此查看次数计数器每次增加 2。修理其他东西时偶然发现的。

于 2017-04-20T12:43:46.447 回答
0

就我而言,每次访问时只有“/index.php”和“/”加载两次。

发生这种情况是因为我在“/etc/apache2/sites-available/”的虚拟主机配置文件(apache)中有以下行:

<VirtualHost XXX.localhost:80>
    FallbackResource /index.php
</VirtualHost>

在我删除“FallbackResource”行后,一切都按预期工作。我上面提到的链接/页面不再重复加载。

于 2020-07-10T17:03:31.640 回答