5

I want to return all requests to urls that contains the string Histats to 404. How can I do that?

Kaah
  • 915
  • 3
  • 11
  • 26

1 Answers1

16
location ~ Histats {
    return 404;
}

PS: If is evil

Mohammad AbuShady
  • 40,884
  • 11
  • 78
  • 89