htaccess 301 将 Cpanel 重定向到 Wordpress

htaccess 301 Redirect Cpanel to Wordpress

我在 mysite.com 有一个网站,博客条目的形式如下:

mysite.com/year/month/title.html

我想将所有这些博客重定向到

wordpress_site.com/year/month/title/

我已通过 Cpanel 将此添加到我的 public_html 文件夹中的 .htaccess 文件中:

## 301 Redirect Entire Directory RedirectMatch 301 mysite.com(.*) wordpress_site.com/

但是重定向似乎不起作用 - 我在这里错过了什么?

谢谢!

主机名不是正则表达式匹配的一部分,尝试:

RedirectMatch 301 ^/([0-9]+)/([0-9]+)/(.*)\.html$ http://wordpress_site.com////