In case it’s useful for someone else in this situation, I ended up creating a page outside WordPress which renames the ‘name’ parameter (to ‘username’) and then redirects to the page I originally wanted to hit.
My code for this external page is:
<?php
$data = array('UID' => $_GET['UID'],
'username' => $_GET['name'],
'ANI' => $_GET['ANI'],
'PIN' => $_GET['PIN'],
'conferenceUID' => $_GET['conferenceUID'],
'role' => $_GET['role'],
'email' => $_GET['email'],
'notes' => $_GET['notes'],
'custom2' => $_GET['custom2'],
'custom1' => $_GET['custom1'],
'inboundAccessID' => $_GET['inboundAccessID'],
'time_created' => $_GET['time_created'],
'callinNumber' => $_GET['callinNumber']);
header( 'Location: http://www.example.com/registration-complete/?'.http_build_query($data) ) ;
?>
Related Posts:
- Newbie question: no index.php? in my plain wordpress permalink
- Create custom permalinks to show Custom Post Type’s relationship?
- How do i add slugs to a URL, but still redirecting to the same page
- Nginx WordPress and another Web app URL structure
- Modifying WP URL handing code?
- How to define a rule in functions.php that ONLY disables the default wp functionality that undesirably changes ‘&’ to ‘#038;’?
- Current WordPress Page Title as Search Parameter into A Tag
- How does one make a URL return dynamic JSON with custom Content Type?
- Encode text string being appended as query to URL [closed]
- Is it safe to use $_SERVER[‘REQUEST_URI’]?
- The correct method to pass query vars in AJAX using ajaxurl
- How can I modify the permalink via a filter?
- How to check if feed URL was requested?
- What is the best practice for escaping data URIs?
- urlencoding of the_title() doesn’t work?
- How do I get the author’s page url from their ID?
- Concatenate site_url and string doesn’t work
- What’s the proper way to use wp_enqueue_script/style?
- Change links automatically to affiliate links
- Rewrite sub folder dynamically with country code in WordPress using PHP
- Use WordPress’ URL rewrite engine
- Extract subdomain and relative address from a url
- Remove query string specific key value
- Echo URL of large version of Featured Image
- Why does WordPress remove my variables in the URL?
- How to rewrite URL with PHP variables with htaccess to a normal looking URL?
- Static variable and add_rewrite_rule?
- Nesting if statements to echo only one string based on what tag was filtered?
- How to change home or site url using action hooks or filter?
- Why do WordPress rewriites seem to work differently for posts vs pages?
- Performance impact of rewriting WordPress URLs
- Is sanitize_title_with_dashes formatting function too liberal (in terms of accepted characters)?
- Dynamic content based on a URL parameter
- Colon is Missing In My Website Url in WordPress
- Changes in permalink structure in WordPress and how to apply to in-site links
- WordPress Persistent connection rule does not work for “posts”
- How to change redirection route to a php page for making it only accessible by logged-in members?
- How to use $_GET function WordPress backend
- subdirectory index.php is not working
- How to modify URL (add GET values) after front end form submission?
- Extend PHP regex to cover “srcset” and “style” attributes
- parts of url disappear when using # inside href=”” [closed]
- My php header() function is not working [closed]
- Scrape external webpage for first image and add it to new post
- Add .htm extention to a custom taxonomy
- Get URL Parameters from referer
- WordPress add_rewrite_rules for custom URLs ending in .html
- Why is $wp->request empty in WordPress 6.0?
- Get the URL of the page from which an ajax request has been launched within ajax callback
- How to pass a PHP $_GET variable and fetch/output it?
- Post’s ID pattern?
- Rewrite with pagination /foo/page/2/ to posts of a given category, page 2
- Divi change project category slug
- How to add a rewrite endpoint to unattached media?
- change default RSS feed URL
- Custom post type url Rewrite (conflicting with page url)
- how to get attached file url for current post?
- Call featured image url
- Creating customized php files in theme folder
- How do I include an external PHP file in a subdir WordPress install?
- Use an anchor link to open an iframe inside a WordPress page
- Comment_author_url doing nothing
- WordPress Rewrite Rule
- Why is home page content not displaying with this rewrite rule?
- WordPress is removing query variables like page, p from the URL of a custom static page
- Workaround for og:image unsupported webp image type, Yoast SEO?
- Allow two posts (from different categories) to have the same slug
- Test the existence of a page/article by its URL, taking in consideration the URL rewriting by filters
- Prepend to all image URLs with PHP, only for mobile devices
- Get nice name of category from slug (remove dashes of category)
- how can i redirect dynamic URL in worpress base on ID in htaccess or wp-config or function.php
- url not using query string no longer working
- Add Link to PHP message
- Rewrite rule not working, but only when parameter is text
- Get WordPress username to customize url
- WordPress/NGINX not respecting the category URL for new posts
- URL rewrite rule
- Meta inserted through wp_insert_post gets messed up
- Require advice handling a URL redirect from a Third Party. URL Params need to populate and then forward to payment
- Need to Echo A Url path to show on a wordpress page
- I want url from a file in media using title file
- changing static link to relative link
- How can I turn a url with get method as a clean url with segment as the get method?
- Create a dynamic buddupress tab
- WordPress Rewrite Issue
- How to print redirected query string variables to the page?
- Multiple URL from Custom post name
- Removing all my hardcoded URLs with get_site_url()
- Magento and WordPress URL integration [closed]
- WordPress adding in site URL to header links
- Passing multiple variables through url (php)
- Whats wrong with my code? Need To add String to shortcode? [closed]
- Remove /category/ from category (archive) page URLs (without using a plugin)
- WPMU – How to echo only one URL
- append special url end of my website urls
- WordPress add parameters with friendly url structure
- Custom taxonomy with page post type – WordPress
- How to create a WordPress PAGE in another folder?
- How to extract URLs from wordpress taxonomies
- Create a custom plugin with dynamic child pages listing database records