我的HTML页面(例如cv.html)在加载时会将文件扩展名带到URL。
所以我有www.mysite.com/cv.html
我希望:
www.mysite.com/cv
我该怎么做?
答案 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)