mirror of
https://github.com/Readarr/Readarr
synced 2026-02-11 09:13:51 +01:00
New: Use 307 redirect for requests missing URL Base
(cherry picked from commit 39074b0b1d040969f86d787c2346d5ed5a9f72dc)
This commit is contained in:
parent
8192c22910
commit
9312f17041
1 changed files with 2 additions and 0 deletions
|
|
@ -20,6 +20,8 @@ public async Task InvokeAsync(HttpContext context)
|
|||
if (_urlBase.IsNotNullOrWhiteSpace() && context.Request.PathBase.Value.IsNullOrWhiteSpace())
|
||||
{
|
||||
context.Response.Redirect($"{_urlBase}{context.Request.Path}{context.Request.QueryString}");
|
||||
context.Response.StatusCode = 307;
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue