如何将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]
但是我的帖子总是会改变,这就是我遇到重定向问题的原因。
答案 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]