将任何不存在的页面重定向到其存在的父页面

时间:2017-01-13 19:54:36

标签: .htaccess redirect

如何将www.example.com/blog/postname/anything-non-existent重定向到www.example.com/blog/postname。我尝试过.htaccess技巧但没有成功。

RewriteRule ^blog/(.*)/(.*)$ http://www.example.com/blog/(.*) [R=301,NC,L]

但是我的帖子总是会改变,这就是我遇到重定向问题的原因。

1 个答案:

答案 0 :(得分:2)

您可以使用:

# If the request is not for a valid file/directory
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^blog/([^/]+)/[^/]+/?$ blog/$1 [R=301,NC,L]