我有一个网站,用 Firefox 加载一个页面需要 10 秒,而加载图像需要 10 秒。这是一个在 apache 上运行的 php 页面。图像只是静态图像。
它在 chrome 上运行得很漂亮......即时加载。
谷歌搜索的答案让我指出了一个可能的问题,即保持活动和缺乏内容长度使 Firefox 感到困惑,事实上,似乎服务器没有在静态或非静态内容上设置内容长度,而是禁用在服务器上保持活动会使加载时间加倍!
一些网站建议在浏览器上禁用保持活动,但我不愿意向所有查看该页面的人推荐!我可能是在吠叫错误的树吗?
浏览器是 Lucid Lynx 上的 firefox 3.6.8。服务器是 Apache 2.2.11。
apache.conf 已附加...我认为它是开箱即用的,尽管我将 KeepAlive 超时减少到 3 试图让页面加载是徒劳的。
我在吠叫错误的树吗?
ServerRoot "/etc/apache2"
LockFile /var/lock/apache2/accept.lock
PidFile ${APACHE_PID_FILE}
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 3
<IfModule mpm_prefork_module>
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 150
MaxRequestsPerChild 0
</IfModule>
<IfModule mpm_worker_module>
StartServers 2
MaxClients 150
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild 0
</IfModule>
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}
AccessFileName .htaccess
<Files ~ "^\.ht">
Order allow,deny
Deny from all
</Files>
DefaultType text/plain
HostnameLookups Off
ErrorLog /var/log/apache2/error.log
LogLevel warn
Include /etc/apache2/mods-enabled/*.load
Include /etc/apache2/mods-enabled/*.conf
Include /etc/apache2/httpd.conf
Include /etc/apache2/ports.conf
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
CustomLog /var/log/apache2/other_vhosts_access.log vhost_combined
Include /etc/apache2/conf.d/
Include /etc/apache2/sites-enabled/