Skip to content

Commit 336c215

Browse files
authored
Update rewrites-on-cloud.md
When working from a local database (SQL localDB, SQLlite) and trailing slash rules are applied we need to add and negate umbidlocallogin path. Not having this will cause a login loop when logging into Umbraco for the first time.
1 parent 3e632a0 commit 336c215

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

umbraco-cloud/set-up/project-settings/manage-hostnames/rewrites-on-cloud.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ For example, the following rule will redirect all requests for `https://example.
9090
<add input="{REQUEST_FILENAME}" negate="true" matchType="IsDirectory" />
9191
<add input="{REQUEST_FILENAME}" negate="true" matchType="IsFile" />
9292
<add input="{REQUEST_FILENAME}" negate="true" pattern="(.*?)\.[a-zA-Z0-9]{1,4}$" />
93+
<add input="{REQUEST_URI}" pattern="^/umbidlocallogin" negate="true" />
9394
<add input="{REQUEST_URI}" negate="true" pattern="^/umbraco" />
9495
<add input="{REQUEST_URI}" negate="true" pattern="^/DependencyHandler.axd" />
9596
<add input="{REQUEST_URI}" negate="true" pattern="^/App_Plugins/" />

0 commit comments

Comments
 (0)