如何从我的网站页面中删除.html?

时间:2014-01-09 20:02:21

标签: html html5 url

我的HTML页面(例如cv.html)在加载时会将文件扩展名带到URL。

所以我有www.mysite.com/cv.html

我希望:

www.mysite.com/cv

我该怎么做?

1 个答案:

答案 0 :(得分:0)

您需要重写网址。您需要转到.htaccess文件并写下这样的内容。

RewriteEngine On
RewriteRule ^cv?$ cv.html [NC,L]

如果您的用户输入www.mysite.com/cv,则会显示www.mysite.com/cv.html

的内容

最后的部分是旗帜。 NC (case insensitive)L(last - stop processing rules)