Skip to content

Instantly share code, notes, and snippets.

@vickymessii
Last active November 3, 2021 14:33
Show Gist options
  • Save vickymessii/948fb86299f10a55c9d04b6cc75024f4 to your computer and use it in GitHub Desktop.
Save vickymessii/948fb86299f10a55c9d04b6cc75024f4 to your computer and use it in GitHub Desktop.
React Routing Refresh page issue fix
<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>
# Reference https://stackoverflow.com/a/40591955/8083975
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment