Category
HTTP
The protocol of the web: requests, responses, status codes and redirects.
Category
The protocol of the web: requests, responses, status codes and redirects.
Without caching, every page load re-downloads every asset. Cache-Control directives like max-age, no-cache and immutable let you control fr…
Redirects are how you move pages, enforce HTTPS and retire old URLs without breaking links. The status code you choose — permanent (301/308…
Every web response carries a status code that tells the client what happened. Serving the right code — a real 404 for missing pages, a 301…
The original HTTP/1.1 opens a new connection per resource and queues requests. HTTP/2 and HTTP/3 fix that with multiplexing, header compres…