lhoist-stay-safe/.htaccess
Antoine M faebe2328a
All checks were successful
continuous-integration/drone/push Build is passing
rewriting rules for prod server
2024-09-13 10:42:29 +02:00

9 lines
251 B
ApacheConf

<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]
</IfModule>