1

我有一个包含以下链接的网站

  • www.mydomain.com/NiceUrl1.html
  • www.mydomain.com/blog.html _
  • www.mydomain.com/AnotherNiceUrl.html

我应该应用什么 .htaccess 重写规则来实现以下结果?

  • www.mydomain.com/NiceUrl1.html
  • www.mydomain.com/博客
  • www.mydomain.com/AnotherNiceUrl.html
4

1 回答 1

0
RewriteEngine On
RewriteRule ^blog\.html$ /blog [L,R=301]
RewriteRule ^blog$ blog.html

那应该行得通。第二行确保任何blog.html访问都获得301 - Moved PermanentlyHTTP 标头,因此会/blog自动打开。第三行/blog指向/blog.html服务器。

于 2012-06-15T10:47:16.877 回答