From 513a69fe9116bba355a296358a0013d7a3cd87eb Mon Sep 17 00:00:00 2001 From: CodeDoes Date: Sat, 3 May 2025 11:13:09 +0200 Subject: [PATCH] Update route.md use example.com instead of site.com (which links to salesforce) --- docs/essential/route.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/essential/route.md b/docs/essential/route.md index f9e5da87..473ef553 100644 --- a/docs/essential/route.md +++ b/docs/essential/route.md @@ -186,11 +186,11 @@ We can categorize the URL and path as follows: | URL | Path | | ------------------------------- | ------------ | -| http://site.com/ | / | -| http://site.com/hello | /hello | -| http://site.com/hello/world | /hello/world | -| http://site.com/hello?name=salt | /hello | -| http://site.com/hello#title | /hello | +| http://example.com/ | / | +| http://example.com/hello | /hello | +| http://example.com/hello/world | /hello/world | +| http://example.com/hello?name=salt | /hello | +| http://example.com/hello#title | /hello | ::: tip If the path is not specified, the browser and web server will treat the path as '/' as a default value.