Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View loursbourg's full-sized avatar
🌏
earthling

Kader DAMENE loursbourg

🌏
earthling
View GitHub Profile
@loursbourg
loursbourg / .htaccess
Last active February 16, 2021 15:46
Apache .htaccess config for a React app with Laravel backend
# Assuming that your build lives in public/app/
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /app/
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /app/index.html [L]