How to remove .html from URL?

2018-12-31 05:31发布

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.example.com/page.html to www.example.com/page ).

8条回答
牵手、夕阳
2楼-- · 2018-12-31 06:29

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]
查看更多
墨雨无痕
3楼-- · 2018-12-31 06:29
RewriteRule /(.+)(\.html)$ /$1 [R=301,L] 

Try this :) don't know if it works.

查看更多
登录 后发表回答