Skip to content

Instantly share code, notes, and snippets.

@BluecadetInteractive
Created February 13, 2013 15:49
Show Gist options
  • Save BluecadetInteractive/4945549 to your computer and use it in GitHub Desktop.
Save BluecadetInteractive/4945549 to your computer and use it in GitHub Desktop.
Rewrite rules to serve static content allowing other routes to be matched.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/path/to/page [NC]
RewriteRule ^(.*)$ /static/page.html [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment