使用htaccess删除网址的文件名

时间:2013-08-19 12:14:45

标签: regex apache .htaccess redirect mod-rewrite

我的博客网址中有这样的内容:

www.miblog.com/post-name/1.html
www.miblog.com/post-name-two/2.html
www.miblog.com/other-post/3.html

我已将永久链接更改为

www.miblog.com/post-name/
www.miblog.com/post-name-two/
www.miblog.com/other-post/

我想从旧网址到新闻网址进行301重定向。我可以用htaccess吗?

该博客使用Wordpress运行。

感谢。

1 个答案:

答案 0 :(得分:1)

将此代码置于所有其他规则之上

RewriteRule ^(.+?)/[^.]+\.html$ $1/ [L,NC,R=301]