Speed test tips for your website!
[EN]
- Website Load Time
- Methods for optimizing for page load time speed
- Minify JavaScript and CSS files, dump content into separate, external files
- Avoid redirects with internal links
- Use caching method to speed up page display
- Avoid CSS @import
- Avoid bad requests that result in 404/410 error
- Avoid long-running scripts
- Combine images into CSS sprites
- Defer parsing of JavaScript
- minimize the amount of JavaScript needed to render the page
- Minify JavaScript, CSS, HTML
- Minimize request size keeping cookies and request headers as small as possible
- Put CSS in the document head
- Remove query strings from static resources - enabling public caching in the HTTP headers
- Serve resources from a consistent URL
- use resource from a unique URL, to eliminate duplicate download bytes
- Specify image dimensions - width and height for all images
- Specify a character set early for your HTML documents allows the browser to begin executing scripts immediately
- Optimize images
- Properly formatting and compressing images can save many bytes of data
- Enable compression with gzip can reduce the number of bytes sent
- Leverage browser caching, setting an expiry date or a maximum age in the HTTP headers for static resources
- Avoid landing page redirects.
--