在我的wp网站上有一个自定义的帖子类型的电影。我使用cpt插件创建了它。所以如果我有一篇有标题的文章zootopia
其url显示为,
http://localhost/mysite/movie/zootopia/
但是,我想将此url更改为
http://localhost/mysite/parent/movie/zootopia/
.因此,当我单击查看帖子时,我希望此url显示在地址栏中
所以我想替换url/movie/
到/parent/movie/
我试过了add_rewrite_rule
作用
add_action(\'init\', \'add_actor_url\');
function add_actor_url()
{
add_rewrite_rule( \'^movie/([^/]*)\', \'parent/movie/$matches[1]\', \'top\' );
flush_rewrite_rules();
}
但这行不通。它不替换url
http://localhost/mysite/movie/zootopia/
到
http://localhost/mysite/parent/movie/zootopia/
真的有可能吗。如果不是,那么还有其他方法吗?