Skip to content

Instantly share code, notes, and snippets.

@nullexcept1on
Forked from alexsasharegan/.htaccess
Created March 31, 2021 17:50
Show Gist options
  • Save nullexcept1on/cb131ec27ef1c526aaaa9642bcdf9478 to your computer and use it in GitHub Desktop.
Save nullexcept1on/cb131ec27ef1c526aaaa9642bcdf9478 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