mirror of
https://git.zx2c4.com/cgit
synced 2024-11-08 09:38:41 +00:00
redirect: be more careful for different cgi setups
This commit is contained in:
parent
da1d4c7776
commit
622e64d5f2
5
cmd.c
5
cmd.c
@ -46,7 +46,10 @@ static void about_fn(void)
|
||||
|
||||
static void about_pre(void)
|
||||
{
|
||||
if (ctx.repo && !ctx.qry.path && ctx.qry.url[strlen(ctx.qry.url) - 1] != '/')
|
||||
if (ctx.repo &&
|
||||
!ctx.qry.path &&
|
||||
ctx.qry.url[strlen(ctx.qry.url) - 1] != '/' &&
|
||||
ctx.env.path_info[strlen(ctx.env.path_info) - 1] != '/')
|
||||
cgit_redirect(fmtalloc("%s/", cgit_currenturl()), true);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user