Skip to content

Instantly share code, notes, and snippets.

@paydro
Created November 27, 2010 14:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paydro/717936 to your computer and use it in GitHub Desktop.
Save paydro/717936 to your computer and use it in GitHub Desktop.
redirect all requests to a particular file - useful for php
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule .* index.php [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment