How to remove .html from URL?

前端 未结 12 1703
轻奢々
轻奢々 2020-11-22 03:02

How to remove .html from the URL of a static page?

Also, I need to redirect any url with .html to the one without it. (i.e. www.exam

12条回答
  •  萌比男神i
    2020-11-22 03:40

    You will need to make sure you have Options -MultiViews as well.

    None of the above worked for me on a standard cPanel host.

    This worked:

    Options -MultiViews
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^([^\.]+)$ $1.html [NC,L]
    

提交回复
热议问题