How to remove apple-touch-icon-precomposed.png errors from apache log and keep iOS icon effects

The title is about summation.

I want to get rid of all those 404 errors in the log for apple-touch-icon-precomposed.png without adding such an image, thereby losing the iOS icon effects.

+3


source to share


1 answer


Two ideas come to mind:



  • Use mod_rewrite

    to force an error using flags [F]

    (not allowed 403), [G]

    (410), or [R=404,L]

    ("redirect" to 404). I think they are missing the error log.
  • Use a zero length file (if your device supports it).
+4


source







All Articles