Skip to content

Instantly share code, notes, and snippets.

@dashr
Created February 20, 2014 07:05
Show Gist options
  • Save dashr/9108386 to your computer and use it in GitHub Desktop.
Save dashr/9108386 to your computer and use it in GitHub Desktop.
send a simple 404 to users looking for a certain folder
<IfModule mod_rewrite.c>
ErrorDocument 404 "<H1>Page not found</H1>"
RewriteEngine On
RewriteBase /
RewriteRule ^(bigNoNo/*) - [R=404,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment