如果我使用下面的简单代码:
function my_custom_rewrite_rules() {
    add_rewrite_rule(
        \'^rewriteme$\',
        \'index.php?page_id=1\',
        \'top\'
    );
}
add_action(\'init\', \'my_custom_rewrite_rules\');
 我希望能够访问
http://example.com/rewriteme 并查看Hello World post的内容,同时保持
/rewriteme 在地址栏中。但这不起作用。它实际上重定向到
http://example.com/hello-world/.
如何让它显示Hello World帖子的内容,而不实际更改地址栏中的URL?
(是的,我刷新了重写规则。)