Merge pull request #13337 from annando/block-chatgpt

Add a ChatGPT role for the built in robots.txt
This commit is contained in:
Hypolite Petovan
2023-08-10 23:18:46 +02:00
committed by GitHub

View File

@@ -45,6 +45,11 @@ class RobotsTxt extends BaseModule
foreach ($allDisallowed as $disallowed) {
echo 'Disallow: ' . $disallowed . PHP_EOL;
}
echo PHP_EOL;
echo 'User-agent: ChatGPT-User' . PHP_EOL;
echo 'Disallow: /' . PHP_EOL;
System::exit();
}
}