|
|
|
|
|
by CableNinja
1041 days ago
|
|
I chose to use an nginx entry, because i also dont trust them to follow robots.txt. Throwing a 410 Gone should keep them from coming back too, theoretically, assuming they actually eject when receiving it, like it should. `if ($http_user_agent ~* ".*?(GPTBot|AI).*?") { return 410; }` Its not perfect, but it should filter them indefinitely, will probably have to add some more terms in there over time. |
|