What does it mean when the apple-touch-icon.png was requested

前端 未结 3 1968
灰色年华
灰色年华 2020-12-22 07:24

I know what the apple touch icon is, and I have seen an apple desktop before, so I can imagine what it would look like. I also know how to add an apple touch icon to my site

3条回答
  •  眼角桃花
    2020-12-22 08:05

    to avoid 404 error on NGINX

    • create an empty image file (blank.gif)
    • put it into images directory
    • use following configuration:

    Location ~* /apple.*.png$ { rewrite ^.+$ /images/blank.gif last }

提交回复
热议问题