0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

360 Secure Browserからのアクセスをはじく (中国のChrominium互換IE内蔵ブラウザ)

Last updated at Posted at 2025-07-27

UserAgent

User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; 360SE)

360SEを除外する場合

$userAgent = $_SERVER['HTTP_USER_AGENT'];
if (stripos($userAgent, '360SE') !== false) {
    http_response_code(403); // Forbidden
    exit("ご利用中のWebブラウザでは利用が出来ません。");
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?