我的父页面:http://example.com/id
虚拟页面包括:
- http://example.com/id/1563
- http://example.com/id/john/5896
- http://example.com/id/jack-miami/3054
我在
parent page 从URL获取id号,然后显示结果。
现在,以上所有页面都显示404个错误。是否可以使用父页面显示包含示例的链接的所有页面。com/id/
我使用了这个,但它不起作用:
function edit_the_permalink($url){
if(strpos($url, get_site_url().\'/id/\') !== false){
$url = get_site_url().\'/id/\';
}
return $url;
}
add_filter(\'the_permalink\', \'edit_the_permalink\');