Skip to content

Instantly share code, notes, and snippets.

@evaldosantos
Created June 27, 2017 21:34
Show Gist options
  • Save evaldosantos/1e0e6530580c618dd9e90cabf7c9dd5f to your computer and use it in GitHub Desktop.
Save evaldosantos/1e0e6530580c618dd9e90cabf7c9dd5f to your computer and use it in GitHub Desktop.
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# not rewrite css, js and images
RewriteCond %{REQUEST_URI} !\.(?:css|js|map|jpe?g|gif|png)$ [NC]
RewriteRule ^(.*)$ /index.html?path=$1 [NC,L,QSA]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment