Skip to content

Instantly share code, notes, and snippets.

View brian3kb's full-sized avatar

Brian Barnett brian3kb

View GitHub Profile
@brian3kb
brian3kb / APACHE: .htaccess pushstate
Created January 18, 2017 10:42 — forked from rayfranco/APACHE: .htaccess pushstate
.htaccess for HTML5 Pushstate support
<ifModule mod_rewrite.c>
Options +FollowSymLinks
IndexIgnore */*
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.html
</ifModule>