Hi, I am creating an image hosting website and I want to create a thumbnail for missing images. For example, if someone inserts a thumbnail to the image and the image is deleted at a later date, I want a "File Deleted" image to display. I assume this is done through htaccess, but I could not find out exactly how to do this. Any help would be appreciated. Thanks!
RewriteEngine on RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_URI} \.(gif|jpg|jpeg|png)$ RewriteRule .* path/to/noimage.gif [L]