doujia4619 2019-05-14 23:04 采纳率: 0%
浏览 67
已采纳

Wordpress添加重写规则重定向而不是“隐藏”

I made a wordpress "add_rewrite_rule" to access 2 GET variables in a clean way.

But so far, it only redirects instead of "cloaking", it also loses the GET variables. (The site uses polylang as a plugin)

I tried including the add_rewrit_rule, adding the values as "tags", ...

function activateresetrule() {

    add_rewrite_rule(
        '^reset/([^/]*)/([^/]*)/?$',
        'index.php?page_id=1330&email=$matches[1]&uuid=$matches[2]',
        'top'
    );

    add_rewrite_rule(
        '^activate/([^/]*)/([^/]*)/?$',
        'index.php??page_id=1325&email=$matches[1]&uuid=$matches[2]',
        'top'
    );
    //delete when fixed
    global $wp_rewrite;
    $wp_rewrite->flush_rules(false);  
}
add_action( 'init', 'activateresetrule' );

add_filter( 'query_vars', 'activateresetrule_filter' );
function activateresetrule_filter( $query_vars ){
    $query_vars[] = 'email';
    $query_vars[] = 'uuid';
    return $query_vars;
}

Goal: https://www.site.be/reset/dfsdf/ddfsfds/ should be the same as https://www.site.be/reset&email=dfsdf&uuid=ddfsfds

Current redirect: /dashboard/password-reset-mail/ (no GET variables) (This is page_id 1330)

Thankyou

  • 写回答

1条回答 默认 最新

  • douyao1994 2019-05-16 22:08
    关注

    Found the solution:

    Existing WP pagina: /dashboard/password-reset-mail/?email=info@maximdegroote.be&uuid=96819e7d-c124-4610-9ae9-62ddb4adf678

    The new URL: /reset/info@maximdegroote.be/96819e7d-c124-4610-9ae9-62ddb4adf678/

    functions.php

    function rewriteurl() {
      global
      $wp,$wp_rewrite;
      $wp->add_query_var('email');
      $wp->add_query_var('uuid');
      $wp_rewrite->add_rule('^reset/([^/]*)/([^/]*)/?$', 'index.php?post_type=dashboard&page_id=1330&email=$matches[1]&uuid=$matches[2]', 'top');
    
      // Reset permalinks, delete after programming
      $wp_rewrite->flush_rules(false);  
    }
    

    thepage.php

    $email = $wp->query_vars['email']; echo $email;
    $uuid = $wp->query_vars['uuid']; echo $uuid; ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测