Skip to content

Instantly share code, notes, and snippets.

@joellesenne
Last active September 3, 2020 17:50
Show Gist options
  • Save joellesenne/478694616c0484b5ae83aa8532441441 to your computer and use it in GitHub Desktop.
Save joellesenne/478694616c0484b5ae83aa8532441441 to your computer and use it in GitHub Desktop.
Module mod rewrite in dist directory
# Module mod rewrite in dist directory
Options -Indexes
<ifModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</ifModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment