当前位置: 代码迷 >> Web前端 >> 14 Rules for Faster-Loading Web Sites(14条规约让你的网页快起来)
  详细解决方案

14 Rules for Faster-Loading Web Sites(14条规约让你的网页快起来)

热度:623   发布时间:2012-06-30 17:20:12.0
14 Rules for Faster-Loading Web Sites(14条规则让你的网页快起来)

这是来自于 Steve Souders?的关于web performance相关文章中的规则,借鉴一下。

  1. Make Fewer HTTP Requests(尽量减少你的http请求)
  2. Use a Content Delivery Network(要尝试使用CDN)
  3. Add an Expires Header(增加http过期头)
  4. Gzip Components(使用gzip压缩你的页面)
  5. Put Stylesheets at the Top(把css样式表放在页面代码顶部)
  6. Put Scripts at the Bottom(把javascript代码放在页面底部)
  7. Avoid CSS Expressions(尽量避免使用css表达式)
  8. Make JavaScript and CSS External(尽量把js和css作为外部引用来引入)
  9. Reduce DNS Lookups(减少DNS查找)
  10. Minify JavaScript(精简javascript)
  11. Avoid Redirects(尽量避免重定向)
  12. Remove Duplicate Scripts(去除重复的javascript,尤其是js引用)
  13. Configure ETags(配置etag)
  14. Make AJAX Cacheable(让ajax能够进行缓存)
原文地址:http://stevesouders.com/hpws/rules.php

?

  相关解决方案