Skip to content

Instantly share code, notes, and snippets.

View Maadtin's full-sized avatar
🎯
Focusing

Martin Hernández Alvarado Maadtin

🎯
Focusing
  • Telefónica
  • Barcelona
View GitHub Profile
@Maadtin
Maadtin / .htaccess
Created September 10, 2017 15:43 — forked from alexsasharegan/.htaccess
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]