workshopclaudecode/public/.htaccess
Frank Meeuwsen e791e06f1d feat: Mollie betaalflow, inschrijfpagina, SEO en deploy
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>
2026-02-10 15:16:49 +01:00

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>