WordPress-为插件输出URL添加重写规则

时间:2019-01-29 13:20:04

标签: wordpress

我想将此URL:http://example.com/?login=true重定向到http://example.com/login/true

我将此钩子添加到fuctions.php,但不起作用。反正吗?

function custom_rewrite_rule() {
    add_rewrite_rule('^login/true/$', 'index.php?login=true' ,'top');
  }
  add_action('init', 'custom_rewrite_rule', 10, 0);

0 个答案:

没有答案