如何将 /post-name 重定向到 /post/post-name

How to redirect /post-name to /post/post-name

我有一个 wordpress 网站。我想将我的 /post-name url 重定向到 /post/post-name。当我尝试这段代码时,它会结束无限重定向。我在 google 进行了搜索,但没有找到任何内容。如何将我的 /post-name 网址重定向到 /post/post-name?

谢谢...

重写规则 ^(.*)(/)$ /post/$1/ [R=301,L]

RewriteRule ^en/(.*)(/?)$ /en/post/$1/ [R=301,L]

嗯,

我找到了我自己问题的答案:) 此代码有效。

RedirectMatch 301 ^/([^/]+)/$ http://websiteurl/post/$1