Created
November 3, 2009 18:12
-
-
Save djacobs/225297 to your computer and use it in GitHub Desktop.
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
[email protected] [~/public_html]# cat .htaccess | |
AddHandler fastcgi-script .fcgi | |
# rewrite url request enabled | |
RewriteEngine On | |
# if the FILENAME requested isn't an actual file, perform the next command | |
RewriteCond %{REQUEST_FILENAME} !-f | |
# send requested urn to the dispatch.fcgi to be processed | |
RewriteRule ^(.*)$ dispatch.fcgi/$1 [QSA,L] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment