Skip to content

Instantly share code, notes, and snippets.

@jlbousing
Created September 15, 2019 23:34
Show Gist options
  • Save jlbousing/ee87f51f79fb16d0edcfef99f8dcb33a to your computer and use it in GitHub Desktop.
Save jlbousing/ee87f51f79fb16d0edcfef99f8dcb33a to your computer and use it in GitHub Desktop.
httaccess para vue-router
<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