"Apache/2.4.41 (Ubuntu) mod_fcgid/2.3.9 OpenSSL/1.1.1f (internal dummy connection)" 더미 연결 로그 생성방지
You can use .htaccess by redirecting requests from the "internal dummy connection" to an empty file
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} ^.*internal dummy connection.*$ [NC]
RewriteRule ^/$ /empty.html [L]
이게 안먹히는 사람은 https://itgall.com/programming/241071 여기를 따라해보세요