Static cache of HTTPD

Source: Internet
Author: User

Static Caching: The user accesses a site, most of the elements are pictures, JS, CSS, these files will be cached by the client's browser to the local computer, speed up the user experience, but has a certain timeliness. Mode 1,Mod_expiresModule Implementation<ifmodule mod_expires.c> expiresactive on Expiresbytype image/gif "Access plus 1 days" expiresb YType image/jpeg "Access plus hours" expiresbytype image/png "Access plus hours" Expiresbytype text/cs S "Now plus 2 hour" Expiresbytype Application/x-javascript "now plus 2 hours" Expiresbytype Application/java Script ' now plus 2 hours ' expiresbytype application/x-shockwave-flash ' now plus 2 hours ' expiresdefault ' now Plus 0 min "</IfModule>
Mode 2, Mod_headers module realization <ifmodule mod_headers.c>    # File cache for Htm,html,txt class one hours    <filesmatch "\. (html|htm|txt) $ ">        header Set Cache-control "max-age=3600"    </filesmatch>
    # CSS, JS, SWF class file cache for one weeks    <filesmatch "\. (css|js|swf) $ ">        Header set Cache-control "max-age=604800"    </filesmatch>
    # jpg,gif,jpeg,png,ico,flv,pdf file cache for one year    <filesmatch "\. (ico|gif|jpg|jpeg|png|flv|pdf) $ ">        Header set Cache-control "max-age=29030400"    </filesmatch></ifmodule>

From for notes (Wiz)

Static cache of HTTPD

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.