From 88f03288d440246271faa964faf507b7b8f49e6f Mon Sep 17 00:00:00 2001 From: nyameteor <26038696+nyameteor@users.noreply.github.com> Date: Mon, 12 Jul 2021 19:30:44 +0800 Subject: [PATCH] docs: Fix an incorrect URL (route) --- src/docs/markdown/caddyfile/directives/route.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/markdown/caddyfile/directives/route.md b/src/docs/markdown/caddyfile/directives/route.md index 0ae9dc8..7e76375 100644 --- a/src/docs/markdown/caddyfile/directives/route.md +++ b/src/docs/markdown/caddyfile/directives/route.md @@ -67,7 +67,7 @@ And now `file_server` will be chained in before `redir` because the order is tak There are other directives that can wrap HTTP handler directives, but each has its use depending on the behavior you want to convey: -- [`handle`](route) wraps other directives like `route` does, but with two distinctions: 1) handle blocks are mutually exclusive to each other, and 2) directives with a handle are [re-ordered]([directive order](/docs/caddyfile/directives#directive-order) normally. +- [`handle`](handle) wraps other directives like `route` does, but with two distinctions: 1) handle blocks are mutually exclusive to each other, and 2) directives with a handle are [re-ordered]([directive order](/docs/caddyfile/directives#directive-order) normally. - [`handle_path`](handle_path) does the same as `handle`, but it strips a prefix from the request before running its handlers. - [`handle_errors`](handle_errors) is like `handle`, but is only invoked when Caddy encounters an error during request handling.