Skip to Content
Nginx HTTP Server - Fourth Edition
book

Nginx HTTP Server - Fourth Edition

by Martin Bjerretoft Fjordvald, Nedelcu
February 2018
Beginner to intermediate
348 pages
9h 40m
English
Packt Publishing
Content preview from Nginx HTTP Server - Fourth Edition

error_page

Context: http, server, location, and if. Variables are accepted.

Allows you to affect URIs to HTTP response code and optionally to replace the code with another.

Syntax: error_page code1 [code2...] [=replacement code] [=@block | URI]

Where the replacement code (denoted by =code) is one of 301, 302, 303, 307, or 308

Examples :

error_page 404 /not_found.html; 
error_page 500 501 502 503 504 /server_error.html; 
error_page 403 http://website.com/; 
error_page 404 @notfound; # jump to a named location block 
error_page 404 =200 /index.html; # in case of 404 error, redirect to index.html with a 200 OK response code 
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Nginx: From Beginner to Pro

Nginx: From Beginner to Pro

Rahul Soni
Nginx Essentials

Nginx Essentials

Valery Kholodkov, Valery I Kholodkov
SSH, The Secure Shell: The Definitive Guide, 2nd Edition

SSH, The Secure Shell: The Definitive Guide, 2nd Edition

Daniel J. Barrett, Richard E. Silverman, Robert G. Byrnes

Publisher Resources

ISBN: 9781788623551Other