From f344dfb79fb5422cf269ef8b3c32a53b56761f1f Mon Sep 17 00:00:00 2001 From: Francis Lavoie Date: Mon, 22 Nov 2021 15:33:31 -0500 Subject: [PATCH] Remove superfluous newline --- src/docs/markdown/caddyfile/directives/php_fastcgi.md | 1 - 1 file changed, 1 deletion(-) diff --git a/src/docs/markdown/caddyfile/directives/php_fastcgi.md b/src/docs/markdown/caddyfile/directives/php_fastcgi.md index ef87c25..ce7b3c3 100644 --- a/src/docs/markdown/caddyfile/directives/php_fastcgi.md +++ b/src/docs/markdown/caddyfile/directives/php_fastcgi.md @@ -84,7 +84,6 @@ route { ### Explanation - - The first section deals with canonicalizing the request path. The goal is to ensure that requests that target a directory on disk actually have the trailing slash `/` added to the request path, so that only a single URL is valid for requests to that directory. This is performed by using a request matcher that matches only requests that _don't_ end in a slash, and which map to a directory on disk which contains an `index.php` file, and if it matches, performs a HTTP 308 redirect with the trailing slash appended. So, for example it would redirect the request to path `/foo` to `/foo/` (appending a `/`, to canonicalize the path to the directory), if `/foo/index.php` exists on disk.