Skip to content

Instantly share code, notes, and snippets.

@MuhammadHasham23
Created March 26, 2019 18:48
Show Gist options
  • Save MuhammadHasham23/8d734bcba4446d760f5fc3df36dd3c61 to your computer and use it in GitHub Desktop.
Save MuhammadHasham23/8d734bcba4446d760f5fc3df36dd3c61 to your computer and use it in GitHub Desktop.
#.htaccess for sub directories react
Options FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
# Source: https://github.com/stefanpenner/ember-app-kit/issues/486#issuecomment-35084928
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment