Skip to content

Instantly share code, notes, and snippets.

@oelgoubi
Forked from davemackintosh/.htaccess
Created July 24, 2020 10:14
Show Gist options
  • Save oelgoubi/308b38ad6a8088daa43db85ab1745b3c to your computer and use it in GitHub Desktop.
Save oelgoubi/308b38ad6a8088daa43db85ab1745b3c to your computer and use it in GitHub Desktop.
Working .htaccess for Single Page Apps
<ifModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) /index.html [QSA,L]
</ifModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment