Created
June 22, 2020 20:44
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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