EDIT因为,正如您在评论中提到的,它可以有几个值,也许我们可以检索城市列表并设置相应的重写规则,就像这样?
假设$city\\u list是一个城市数组
foreach ($city_list as $city) {
add_rewrite_rule(\'/^\'. $city .\'/destination/\'. $city .\'$/\',\'index.php?p=idofyourhomepage\',\'top\');
}
试试重写规则怎么样。
add_rewrite_rule(\'/^london/destination/london$/\',\'index.php?p=idofyourhomepage\',\'top\');
或
add_rewrite_rule(\'/^london/destination/london$/\',\'index.php?pagename=nameofyourhomepage\',\'top\');
请验证永久链接设置以刷新规则。