Skip to content

Instantly share code, notes, and snippets.

@arevindh
Last active February 21, 2020 10:16
Show Gist options
  • Save arevindh/cfc7d1e1bca78281a4e1269a3b3bb690 to your computer and use it in GitHub Desktop.
Save arevindh/cfc7d1e1bca78281a4e1269a3b3bb690 to your computer and use it in GitHub Desktop.
.htaccess for react router
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteRule ^(Shibboleth.sso)($|/) - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.html [L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment