我有一个包含以下链接的网站
我应该应用什么.htaccess重写规则来实现以下结果?
答案 0 :(得分:0)
RewriteEngine On
RewriteRule ^blog\.html$ /blog [L,R=301]
RewriteRule ^blog$ blog.html
那应该有用。第二行确保任何blog.html
访问都获得301 - Moved Permanently
HTTP标头,因此会自动打开/blog
。第三行使/blog
指向服务器上的/blog.html
。