Skip to content

Instantly share code, notes, and snippets.

@hiranthi
Created June 22, 2020 20:44
Show Gist options
  • Save hiranthi/79ee3a9c5c0fdd61eb22c24172fd21c3 to your computer and use it in GitHub Desktop.
Save hiranthi/79ee3a9c5c0fdd61eb22c24172fd21c3 to your computer and use it in GitHub Desktop.
.htaccess regels om afbeeldingen die niet meer bestaan een 410 Gone status te geven (in plaats van 404 Not Found)
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase //
RewriteCond %{REQUEST_URI} ^/wp-content/uploads
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .*\.(jpe?g|gif|bmp|png)$ /index.php [L,R=410]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment