Skip to content

Instantly share code, notes, and snippets.

View andercpu's full-sized avatar

Anderson Pelentir Ozório andercpu

View GitHub Profile
@andercpu
andercpu / .htaccess-ReacJS
Created February 4, 2020 19:02
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>