301在htaccess中重定向reg表达式

时间:2017-02-04 02:29:19

标签: regex .htaccess redirect

我正在尝试重定向http://www.domain.com/post/155851321646/post-slug

http://www.kaleandcaramel.com/post-slug

(这实际上是将旧的Tumblr网址重定向到Wordpress网址)

我最接近的是:

RewriteRule ^/?post/([0-9]+).(.*?)$ http://www.domain.com/$2 [L,R=301]

但它不起作用。

1 个答案:

答案 0 :(得分:3)

请改用:

RewriteRule ^post/[0-9]+/([^/]+)$ http://www.domain.com/$1 [L,R=301]

让我知道任何问题。