How to remove .html from URL?

前端 未结 12 1561
轻奢々
轻奢々 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条回答
  •  名媛妹妹
    2020-11-22 03:30

    With .htaccess under apache you can do the redirect like this:

    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)\.html$ /$1 [L,R=301] 
    

    As for removing of .html from the url, simply link to the page without .html

    page
    

提交回复
热议问题