14 lines
423 B
ApacheConf
14 lines
423 B
ApacheConf
|
|
# SPA routing: stuur alle requests naar index.html
|
||
|
|
# zodat React Router de routes /bedankt, /inschrijven etc. kan afhandelen
|
||
|
|
<IfModule mod_rewrite.c>
|
||
|
|
RewriteEngine On
|
||
|
|
RewriteBase /workshopclaudecode/
|
||
|
|
|
||
|
|
# Als het bestand of directory bestaat, serveer het direct
|
||
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||
|
|
|
||
|
|
# Alles anders naar index.html
|
||
|
|
RewriteRule ^ index.html [QSA,L]
|
||
|
|
</IfModule>
|