如何提高web站点性能的法则

阅读更多
今天读酷壳上的这篇博客—— http://coolshell.cn/articles/4939.html,文章在最后提到了提升web站点的14个法则:

    Make Fewer HTTP Requests
    Use a Content Delivery Network
    Add an Expires Header
    Gzip Components
    Put Stylesheets at the Top
    Put Scripts at the Bottom
    Avoid CSS Expressions
    Make JavaScript and CSS External
    Reduce DNS Lookups
    Minify JavaScript
    Avoid Redirects
    Remove Duplicate Scripts
    Configure ETags
    Make AJAX Cacheable

感觉总结的相当不错,根据连接,发现这是一本书( http://stevesouders.com/hpws/rules.php)中提出的法则,可以到 这里去买那本书。

关于这些法则,雅虎技术开发社区也有一篇不错了文章分析,参看: http://developer.yahoo.com/performance/rules.html

你可能感兴趣的:(performance)