我有一個網站,其中一個網頁需要10秒才能加載firefox,另外還需要10秒才能加載圖像。這是一個運行在apache上的php頁面。圖像只是靜態圖像。網站對Firefox非常慢,即時在其他瀏覽器上:KeepAlive問題?
它在鍍鉻上運行非常漂亮....即時裝載。
用google搜索答案已經指出我可能存在的一個問題是保持活着並且缺乏內容長度讓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/
你能鏈接到真實的網站嗎?這是重JS嗎? – 2010-08-06 22:57:57
我已經在http://www.farnthropkelly.co.uk/ – ohp 2010-08-07 11:56:34
上設置了一個測試網站我已經在該網站上發佈了一些時間安排...... DNS查找很好..目前我非常想認爲這個是一個奇怪的Firefox錯誤..將嘗試在Windows版本的Firefox,也許IE,或不同版本的Firefox。 – ohp 2010-08-07 12:46:25