in support-frontend/app/controllers/Application.scala [436:447]
private def getGeoRedirectUrl(fastlyCountry: Option[CountryGroup], path: String): String = {
fastlyCountry match {
case Some(UK) => s"/uk/$path"
case Some(US) => s"/us/$path"
case Some(Australia) => s"/au/$path"
case Some(Europe) => s"/eu/$path"
case Some(Canada) => s"/ca/$path"
case Some(NewZealand) => s"/nz/$path"
case Some(RestOfTheWorld) => s"/int/$path"
case _ => s"/uk/$path"
}
}