diff --git a/src/docs/guides/create-blazor-cms/README.md b/src/docs/guides/create-blazor-cms/README.md
index 51dce873cb8..35e40e3280e 100644
--- a/src/docs/guides/create-blazor-cms/README.md
+++ b/src/docs/guides/create-blazor-cms/README.md
@@ -730,6 +730,50 @@ Run the application. Click on the `Orchard Core` link on the Left Nav will load
# Add multitenancy to the Blazor App
One of the key features of Orchard Core is its multi-tenancy support. In this section, we will add multi-tenancy support to our Blazor application.
+!!! note
+ Orchard Core listens for requests, also on '/' (e.g. when a site needs to be configured). So having our Blazor app listening to '/' as well can pose a problem.
+ A solution is to replace `@page "/"` with `@page "/home"` in our `home.razor` file (and update our `navmenu.razor`), so Blazor (the app) will listen to `/home` while Orchard Core is not hindered by that.
+
+=== "Home.razor"
+
+ ```razor
+ @page "/home"
+
+