add redirect for broken backlinks with comma

This commit is contained in:
Daniel Micay 2021-08-22 12:28:48 -04:00
parent e8b97f05bf
commit 598ce1fef8

View File

@ -163,6 +163,10 @@ http {
return 301 $1/$2;
}
location = /, {
return 301 /;
}
location = /security.txt {
return 301 /.well-known/security.txt;
}