diff --git a/docs/src/content/overview-features.md b/docs/src/content/overview-features.md index 336e1aa27..36fa9fe84 100644 --- a/docs/src/content/overview-features.md +++ b/docs/src/content/overview-features.md @@ -87,12 +87,12 @@ To illustrate this, consider the following example which maps all requests for `
┌── url regex ──┬─ local path ─┐
map_local option: |example.com/css|~/static-css
- │
- │ URL is split here
- ▼ ▼
+ │
+ │ URL is split here
+ ▼ ▼
HTTP Request URL: https://example.com/css/print/main.css?timestamp=123
- │ ▼
- ▼ query string is ignored
+ │ ▼
+ ▼ query string is ignored
Served File: Preferred: ~/static-css/print/main.css
Fallback: ~/static-css/print/main.css/index.html
Otherwise: 404 response without content
@@ -105,12 +105,12 @@ If the file depends on the query string, we can use regex capturing groups. In t
flow
┌filter┬─────────── url regex ───────────┬─ local path ─┐
map_local option: |~m GET|example.com/index.php\\?page=(.+)|~/static-dir
- │ │
- │ │ regex group = suffix
- ▼ ▼
-HTTP Request URL: https://example.com/index.php?page=aboutus
- │
- ▼
+ │ │
+ │ │ regex group = suffix
+ ▼ ▼
+HTTP Request URL: https://example.com/index.php?page=aboutus
+ │
+ ▼
Served File: Preferred: ~/static-dir/aboutus
Fallback: ~/static-dir/aboutus/index.html
Otherwise: 404 response without content