H2O

the optimized HTTP/1.x, HTTP/2, HTTP/3 server

Powered by Oktavia

Configure > Redirect Directives

This document describes the configuration directives of the redirect handler.

Description:

Redirects the requests to given URL.

The directive rewrites the URL by replacing the host and path part of the URL at which the directive is used with the given URL. For example, when using the configuration below, requests to http://example.com/abc.html will be redirected to https://example.com/abc.html.

If the argument is a scalar, the value is considered as the URL to where the requests should be redirected.

Following properties are recognized if the argument is a mapping.

url
URL to redirect to
status
the three-digit status code to use (e.g. 301)
internal
either YES or NO (default); if set to YES, then the server performs an internal redirect and return the content at the redirected URL

Example. Redirect all HTTP to HTTPS permanently (except for the files under RSS)
hosts:
    "example.com:80":
        paths:
            "/":
                redirect:
                    status: 301
                    url:    "https://example.com/"
            "/rss":
                file.dir: /path/to/rss
Level:
path