WP redirect rule doesn't work

时间:2015-01-28 作者:pbaldauf

我正在尝试重定向页面http://www.example.org/newsletter/unsubscribe.htmlhttp://www.example.org/newsletter/unsubscribe.

我尝试了以下方法:

add_rewrite_rule(\'newsletter/unsubscribe.html$\', \'newsletter/unsubscribe\', \'top\');
如果我var_dump 这个global wp_rewrite 我看到添加了以下规则:

  ...
  public \'non_wp_rules\' => 
    array (size=1)
      \'newsletter/unsubscribe.html$\' => string \'newsletter/unsubscribe\' (length=20)
  ...
有人知道我错过了什么吗?

1 个回复
最合适的回答,由SO网友:Matthew Boynes 整理而成

简单的回答是:重写规则不是这样工作的。你可以看到他们是如何工作的the examples section of the codex page.

听起来你想做的是设置重定向。我建议使用a plugin 这样做。

结束

相关推荐