2013-12-14 62 views
0

我的網站非常低。我試過這個代碼,並失敗。我該如何解決它,請幫助我。 頁面加載時間爲56秒。頁面速度非常低破壞圖像的原因

RewriteEngine on 
RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_URI} \.(gif|jpg|jpeg|png)$ 
RewriteRule .*/images/car_model/defaultcarimage-thumb.jpg [L] 

enter image description here

回答

0

我建議你這一點。

​​

1)拆下ETAGE和最後修改使用此代碼

<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|html|htm|bmp)$"> 
Header unset Last-Modified 
FileETag None 
</FilesMatch> 

2)使用mod_deflate模塊壓縮文本文檔和圖像離開等音頻/視頻文件等

<IfModule mod_deflate.c> 
    SetOutputFilter DEFLATE 
    SetEnvIfNoCase Request_URI \.(?:gif|jpg|jpeg|png|rar|zip|mp3|mp4|flv|bmp)$ no-gzip 
    <IfModule mod_headers.c> 
     BrowserMatch \bMSIE !no-gzip !gzip-only-text/html 
     Header append Vary User-Agent 
    </IfModule> 
</IfModule> 

如果你想完整的代碼,以提高您的網站速度和YSlow 100,然後讓我知道我會爲您提供我的htaccess代碼,我用我的網站。

+0

沒有改變任何事情。我不知道什麼是問題。 http://tuketiciyardim.com/webicerigi/ – Actionsee

+0

嘗試刪除您的RewriteCond和RewriteRule,並只使用我的代碼。目前你的結果顯示沒有找到圖像,因此可能是URL重寫錯誤。 – 2013-12-14 11:17:23

+0

對不起。問題是數據庫。我沒有寫這個腳本。我檢查了數據庫和2個用於匹配的字符串列。我添加了索引並修復。謝謝 :) – Actionsee

0

步驟來spped您的網站。

  1. 安裝deflate模塊壓縮文件。
  2. 設置圖像緩存的到期時間
  3. 加載頁面加載的所有th/e .js文件。
  4. 將所有css文件放在一個文件中
  5. 如果可能,請將.js文件添加到一個文件中。
  6. 確保圖像的尺寸不是很大

https://developers.google.com/speed/pagespeed/insights/