Created
November 27, 2010 14:39
-
-
Save paydro/717936 to your computer and use it in GitHub Desktop.
redirect all requests to a particular file - useful for php
This file contains 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
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