如果我理解正确,您可以尝试替换:
add_rewrite_rule( \'^prefix-(.*)\', \'foo/bar/index.php?page=$matces[1]\', \'top\' );
使用
add_rewrite_rule( \'^prefix-(.*)\', \'foo/bar/index.php?page=$matces[1]\', \'bottom\' );
从
Codex:
\'top
\' 将优先于WordPress的现有规则,其中\'bottom
\' 将首先检查所有其他规则是否匹配。默认值:“bottom
“”