14 tips for performance
- Make fewer HTTP requests
- Use a CDN
- Add an Expires header
- Gzip components
- Put stylesheets at the top
- Put scripts at the bottom
- Avoid CSS expressions
- Make JS and CSS external
- Reduce DNS lookups
- Minify JS
- Avoid redirects
- Remove duplicate scripts
- Configure ETags
- Make AJAX cacheable
提高性能的14个技巧
- 少做 HTTP 请求
- 使用 CDN
- 增加过期的头
- Gzip 组件
- 将样式表放在头部
- 将脚本放于底部
- 避免使用CSS表达式
- 将JS and CSS 作为外部文件
- 减少DNS查询
- 精简 JS 脚本
- 避免重定向
- 移除重复脚本
- 配置 ETags
- 使 AJAX 可缓存
参考:http://www.cnblogs.com/feixian49/archive/2009/02/12/1388741.html