Skip to content

Instantly share code, notes, and snippets.

@choonkeat
Created October 7, 2009 03:33
Show Gist options
  • Save choonkeat/203696 to your computer and use it in GitHub Desktop.
Save choonkeat/203696 to your computer and use it in GitHub Desktop.
# prevents complicated rewrites from somehow screwing up my RailsBaseURI
<IfModule mod_rewrite.c>
# RewriteEngine on
RewriteCond %{REQUEST_URI} ^/my-uri-prefix* [NC]
RewriteRule ^(.*)$ - [L,QSA]
</IfModule>
<IfModule passenger_module>
RailsBaseURI /my-uri-prefix
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment