小编典典

如何从URL中删除.html?

html

如何.html从静态页面的网址中删除?

另外,我需要将任何网址重定向.html到没有该网址的网址。(即www.example.com/page.htmlwww.example.com/page)。


阅读 529

收藏
2020-05-10

共1个答案

小编典典

感谢您的答复。我已经解决了我的问题。假设我的页面在下,则适用以下.htaccess 规则。

<IfModule mod_rewrite.c>
   RewriteEngine On
   RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /html/(.*).html\ HTTP/
   RewriteRule .* http://localhost/html/%1 [R=301,L]

   RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /html/(.*)\ HTTP/
   RewriteRule .* %1.html [L]
</IfModule>
2020-05-10