Replace invalid image url with 404 image

前端 未结 5 1898
生来不讨喜
生来不讨喜 2020-12-08 10:34

I don\'t know if this is possible or not, I have an image host that I\'ve made myself. I need some last tweaks with it.

Whenever an image has been deleted or is an i

5条回答
  •  一整个雨季
    2020-12-08 11:12

    You can use ErrorDocument with FilesMatch directive

    
    ErrorDocument 404 /image.jpg 
    
    

    This will show /image.jpg if a 404 image uri with jpg png or gif extension is requested.

    you can also add your custom image or html markup to the errordocument :

    
    ErrorDocument 404 ''
    
    

提交回复
热议问题