# VORA — clean URLs (extensionless). Works in ANY folder (/vora/, /vora-v03/, root...).

Options -MultiViews
RewriteEngine On
DirectoryIndex index.html

# Serve "/page" from "page.html" when that file exists (keeps the URL clean).
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^(.+)$ $1.html [L]
