Skip to content

Instantly share code, notes, and snippets.

@deckerego
Created April 18, 2014 07:56
Show Gist options
  • Save deckerego/11030439 to your computer and use it in GitHub Desktop.
Save deckerego/11030439 to your computer and use it in GitHub Desktop.
Apache mod_rewrite rule to redirect all traffic except PNGs
RewriteEngine on
RewriteCond %{REQUEST_URI} !^.*\.png
RewriteRule ^/(.+) /index.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment