ロボットで識別されたすべてのhttp_user_agentをブロックしてホームページに移動することを許可したいと思います。たとえば、URL は次のようになります。 https://test.mydomain.org/xyz....クローラにホームページに移動を依頼するだけです。https://test.mydomain.org/しかし、https://test.mydomain.org/xyz...私の状況にはどの正規表現を使うべきですか?
私はnginx confに対してすでにこれを試しました。
.
.
.
location ~* (/.*)$ {
if ($limit_bots = 1) {
return 403;
}
.
.
.