Skip to content

Instantly share code, notes, and snippets.

@samueleiche
Created March 31, 2020 21:27
Show Gist options
  • Save samueleiche/5bec0899d82e4d55d367532f7faf135c to your computer and use it in GitHub Desktop.
Save samueleiche/5bec0899d82e4d55d367532f7faf135c to your computer and use it in GitHub Desktop.
Vue.js VueRouter .htaccess config for subdirectory
<IfModule mod_rewrite.c>
DirectoryIndex /vue/dist/index.html
RewriteEngine On
RewriteBase /vue/dist
RewriteRule ^vue/dist/index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /vue/dist/index.html [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment