Betaalflow via Tally formulier (e-mailverzameling) + Mollie Payment Links. Inschrijfpagina (/inschrijven), bedankt-pagina (/bedankt), OpenGraph tags, favicon, Umami analytics, base path config en deploy script toegevoegd. Site live op frankmeeuwsen.com/workshopclaudecode/ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
423 B
ApacheConf
13 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>
|