Skip to content

Instantly share code, notes, and snippets.

@stoneC0der
Forked from davemackintosh/.htaccess
Created June 24, 2022 12:04
Show Gist options
  • Save stoneC0der/c3bcb1b5848ad3eb0a092d795bdd5f7e to your computer and use it in GitHub Desktop.
Save stoneC0der/c3bcb1b5848ad3eb0a092d795bdd5f7e 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