Skip to content

Instantly share code, notes, and snippets.

@bcamargogui
Created April 30, 2018 13:37
Show Gist options
  • Save bcamargogui/ea8ff4367004e561d36a211fd92b69c5 to your computer and use it in GitHub Desktop.
Save bcamargogui/ea8ff4367004e561d36a211fd92b69c5 to your computer and use it in GitHub Desktop.
Catch all requests and redirect to React main file - HTACCESS
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment