From b01f645d7dc093b1124d316ad90f6bc0aad5b790 Mon Sep 17 00:00:00 2001 From: Luo Peng Date: Tue, 18 Jan 2022 10:33:13 +0800 Subject: [PATCH] docs: Fix a broken markdown link (#204) --- src/docs/markdown/caddyfile/directives/handle.md | 2 +- src/docs/markdown/caddyfile/directives/route.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docs/markdown/caddyfile/directives/handle.md b/src/docs/markdown/caddyfile/directives/handle.md index 752ebdf..8c31e63 100644 --- a/src/docs/markdown/caddyfile/directives/handle.md +++ b/src/docs/markdown/caddyfile/directives/handle.md @@ -29,7 +29,7 @@ There are other directives that can wrap HTTP handler directives, but each has i - [`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. -- [`route`](route) wraps other directives like `handle` does, but with two distinctions: 1) route blocks are not mutually exclusive to each other, and 2) directives within a route are not [re-ordered]([directive order](/docs/caddyfile/directives#directive-order), giving you more control if needed. +- [`route`](route) wraps other directives like `handle` does, but with two distinctions: 1) route blocks are not mutually exclusive to each other, and 2) directives within a route are not [re-ordered](/docs/caddyfile/directives#directive-order), giving you more control if needed. ## Examples diff --git a/src/docs/markdown/caddyfile/directives/route.md b/src/docs/markdown/caddyfile/directives/route.md index b183a07..53e04c4 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`](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](/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 within a handle are [re-ordered](/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.