Add a ChatGPT role for the built in robots.txt

This commit is contained in:
Michael 2023-08-10 21:10:12 +00:00
parent 41bc148040
commit 241624027f
1 changed files with 5 additions and 0 deletions

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();
}
}