htaccess if index not found redirect
//Redirect to a URL via htaccess if index.(html|php) doesn't exist
RewriteCond %{REQUEST_FILENAME} -d
RewriteCond %{REQUEST_FILENAME}/index\.(html|php) !-f
RewriteRule ^ http://example.com/something-blew-up.html [R=302]