
    # Turn off MultiViews
    Options -MultiViews

    RewriteEngine on

    RewriteBase /output

    # Rewrite rule to serve HTML
    RewriteCond %{HTTP_ACCEPT} !application/rdf\+xml.*(text/html|application/xhtml\+xml)
    RewriteCond %{HTTP_ACCEPT} text/html [OR]
    RewriteCond %{HTTP_ACCEPT} application/xhtml\+xml [OR]
    RewriteCond %{HTTP_USER_AGENT} ^Mozilla/.*
    RewriteRule ^$ ./landing_page.html [R=303,L]

    