# La Vida Kitchen & Bar — extensionless URLs (LiteSpeed/Apache) Options -MultiViews RewriteEngine On # Serve /menu from /menu.html when the .html exists and it's not a real dir RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.html -f RewriteRule ^(.+?)/?$ $1.html [L] # 301 any direct /menu.html request to the clean /menu URL RewriteCond %{THE_REQUEST} \s/([^.]+)\.html[\s?] [NC] RewriteRule ^ /%1 [R=301,L]