How to prevent favicon.ico requests?

前端 未结 11 1141
栀梦
栀梦 2020-11-22 10:34

I don\'t have a favicon.ico, but my browser always makes a request for it.

Is it possible to prevent the browser from making a request for the favicon from my site? M

11条回答
  •  误落风尘
    2020-11-22 10:38

    A very simple solution is put the below code in your .htaccess. I had the same issue and it solve my problem.

    
        RedirectMatch 403 favicon.ico
    
    

    Reference: http://perishablepress.com/block-favicon-url-404-requests/

提交回复
热议问题