Skip to content

Instantly share code, notes, and snippets.

@ratulkuri
Created September 26, 2023 08:05
Show Gist options
  • Select an option

  • Save ratulkuri/cd0b460be918e6405550adfbde2229cc to your computer and use it in GitHub Desktop.

Select an option

Save ratulkuri/cd0b460be918e6405550adfbde2229cc to your computer and use it in GitHub Desktop.
Fix reload in inner pages gives 404 when react build project running in apache server
<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