Skip to content

Instantly share code, notes, and snippets.

@edihasaj
Forked from alexsasharegan/.htaccess
Created March 15, 2023 17:10
Show Gist options
  • Save edihasaj/3d603edcb62801f625d9417e8997014d to your computer and use it in GitHub Desktop.
Save edihasaj/3d603edcb62801f625d9417e8997014d to your computer and use it in GitHub Desktop.
Apache Config for React Router
<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