Skip to content

Instantly share code, notes, and snippets.

@iforwms
Forked from alexsasharegan/.htaccess
Created August 14, 2018 07:46
Show Gist options
  • Save iforwms/ac9a91522412c15950f032144fab3973 to your computer and use it in GitHub Desktop.
Save iforwms/ac9a91522412c15950f032144fab3973 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