如何.html从静态页面的网址中删除?
.html
另外,我需要将任何网址重定向.html到没有该网址的网址。(即www.example.com/page.html到www.example.com/page)。
www.example.com/page.html
www.example.com/page
感谢您的答复。我已经解决了我的问题。假设我的页面在下,则适用以下.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>