Skip to content

Instantly share code, notes, and snippets.

@metodribic
Created June 1, 2018 06:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save metodribic/61103e1349074d5831afcd8d4bc5ce8e to your computer and use it in GitHub Desktop.
Save metodribic/61103e1349074d5831afcd8d4bc5ce8e to your computer and use it in GitHub Desktop.
Apache2 .htaccess for angular2 app hosted in subdirectories
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /subdirectory
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /subdirectory/index.html [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment