Skip to content

Instantly share code, notes, and snippets.

@batuzav
Last active December 8, 2020 22:48
Show Gist options
  • Save batuzav/d451b70413e8828a7b6e6295ab9255ab to your computer and use it in GitHub Desktop.
Save batuzav/d451b70413e8828a7b6e6295ab9255ab to your computer and use it in GitHub Desktop.
.htaccess to all react app
 <IfModule mod_rewrite.c>     
      RewriteEngine On
      RewriteBase /
      RewriteRule ^index\.html$ - [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