Files
Alexander Davis 9188b796fc
All checks were successful
Publish to Server / Deploy (push) Successful in 43s
Add .htaccess to rewrite URLs without .html extension
Signed-off-by: Alexander Davis <alex@adcm.uk>
2025-12-14 13:22:27 +00:00

10 lines
176 B
ApacheConf

RewriteEngine on
RewriteCond %{THE_REQUEST} /([^.]+)\.html [NC]
RewriteRule ^ /%1 [NC,L,R]
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^ %{REQUEST_URI}.html [NC,L]