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