ael/app/.htaccess
2024-10-02 19:57:25 +02:00

5 lines
No EOL
232 B
ApacheConf

#remove html file extension-e.g. https://example.com/file.html will become https://example.com/file
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html [NC,L]