Browse Source
Merge pull request #22764 from abpframework/auto-merge/rel-9-2/3689
Merge branch dev with rel-9.2
pull/22776/head
maliming
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
14 additions and
0 deletions
-
docs/en/modules/cms-kit-pro/url-forwarding.md
|
|
|
@ -37,6 +37,20 @@ You can create new forwardings or update/delete existing ones, in the admin side |
|
|
|
|
|
|
|
 |
|
|
|
|
|
|
|
|
|
|
|
## Options |
|
|
|
|
|
|
|
### ShortenedUrlCacheOptions |
|
|
|
|
|
|
|
`ShortenedUrlCacheOptions` is used to configure the cache settings for the URL forwarding system. Example: |
|
|
|
|
|
|
|
```csharp |
|
|
|
Configure<ShortenedUrlCacheOptions>(options => |
|
|
|
{ |
|
|
|
options.CacheAllOnStartup = true; // Cache all shortened URLs on startup |
|
|
|
}); |
|
|
|
``` |
|
|
|
|
|
|
|
# Internals |
|
|
|
|
|
|
|
## Domain Layer |
|
|
|
|