網站優化
檢測網網是否有問題: 1、 https://website.grader.com/ 一、網路速度優化 1、優化圖像 圖像做適當的縮放 網站免費測試平台 Google’s PageSpeed Insights , Website Grader , and GTMetrix 2、瀏覽器緩存 啟用瀏覽器緩存,分成用戶端瀏覽器和伺服器端之緩存設置 3、啟動壓縮 從伺服器端端設置 4、優化你的CSS代碼 你的 CSS 代碼載入之前人們看到您的網站。時間越長,下載你的 CSS,他們等待的時間越長。 在CSS是否有多餘的 CSS 代碼沒用到或空白 可使用 csscompresssor.com 做檢查 5、Script 載入問題 很多網站會將 Script 放在 Head 內,這表示先載入後,才會執行內容 (Body) 顯示,故決解方式: 可以將 Script 放在內容之後。 在載入外部連結其標韱,加入defer (推遲) 或 async (非同步)屬性, Both defer and async are very useful, but make sure you understand the difference before you use them: Async tags load the scripts while the rest of the page loads, but this means scripts can be loaded out of order. Basically, lighter files load first. This might be fine for some scripts, but can be disastrous for others. The defer attribute loads your scripts after your content has finished loading. It also runs the scripts in order. Just make sure your scripts run so late without breaking your site. For examp