Skip to content

Instantly share code, notes, and snippets.

@simensen
Created January 31, 2010 01:54
Show Gist options
  • Save simensen/290835 to your computer and use it in GitHub Desktop.
Save simensen/290835 to your computer and use it in GitHub Desktop.
# Works as expected for .htaccess
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule / http://example.com/ [L]
# Works as expected for main configuration
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-d
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} !-f
RewriteRule / http://example.com/ [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment