How to remove .html from URL?

前端 未结 12 1691
轻奢々
轻奢々 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:29

    I use this .htacess for removing .html extantion from my url site, please verify this is correct code:

        RewriteEngine on
    RewriteBase /
    RewriteCond %{http://www.proofers.co.uk/new} !(\.[^./]+)$
    RewriteCond %{REQUEST_fileNAME} !-d
    RewriteCond %{REQUEST_fileNAME} !-f
    RewriteRule (.*) /$1.html [L]
    RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^.]+)\.html\ HTTP
    RewriteRule ^([^.]+)\.html$ http://www.proofers.co.uk/new/$1 [R=301,L]
    

提交回复
热议问题