0

我在我的 IIS 6 中部署了一个 wordpress 博客。我想重定向 URL:

www.myblog.com/index.php/2012/03/14/notes _ _

www.myblog.com/index.php/2012/03/12/notes _ _

有没有办法通过使用 IIS 或者我将修改 php 代码?谢谢

4

1 回答 1

1

你可以使用ISAPI_Rewrite,它是一个强大的基于正则表达式的 IIS URL 重写器。

你可以使用类似的东西:

RewriteBase /

RewriteRule ^(.+)/14/notes/(.+)$ $1/12/notes/$2 [NC,R=301,L

于 2012-03-15T02:01:36.537 回答