Skip to content

Instantly share code, notes, and snippets.

@halcyonardency
Created September 16, 2012 04:18
Show Gist options
  • Save halcyonardency/3730980 to your computer and use it in GitHub Desktop.
Save halcyonardency/3730980 to your computer and use it in GitHub Desktop.
Redirect all 404 to file.php
RewriteEngine On
RewriteBase /foo/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /foo/file.php [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment