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?
- How to get URL of current page displayed?
- 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?
- Dynamic URL to reference custom PHP files
- Concatenate site_url and string doesn’t work
- What’s the proper way to use wp_enqueue_script/style?
- Callback URL in WordPress
- Wrong links in WordPress?
- Change links automatically to affiliate links
- Rewrite sub folder dynamically with country code in WordPress using PHP
- How is WordPress manipulating the posts like there are folders?
- Use WordPress’ URL rewrite engine
- Extract subdomain and relative address from a url
- Remove query string specific key value
- Rename “Portfolio” slug?
- 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
- Append query string to all URL’s
- custom rewrite rule help! Custom rewrite rules not applying to custom post type
- subdirectory index.php is not working
- Use URL Rewrite as well as $_GET parameters in URL?
- 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
- Search Query: how to construct a search string from two select elements?
- Help with .htaccess and Login with Subfolders
- Get URL Parameters from referer
- Need help enqueueing webfonts
- 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 check if the current page is at a specified path in the URL?
- 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
- I’m unable to call img path using single quotes in an array?
- Need to Modify a WordPress Shortcode with another wordpress shortcode
- How to add a rewrite endpoint to unattached media?
- change default RSS feed URL
- Can’t change website Title on wordpress
- Custom post type url Rewrite (conflicting with page url)
- How to use title attributes in sidebar widget?
- 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?
- How to add PHP pagination to wordpress
- Use an anchor link to open an iframe inside a WordPress page
- Adding custom url to readmore link using get_permalink()
- How to set base url for php widget
- Comment_author_url doing nothing
- WordPress Rewrite Rule
- Why is home page content not displaying with this rewrite rule?
- WordPress permalink issue
- 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?
- How to pass username in affiliate link in wordpress website
- Unable to display multiple parameters from url by javascript through shortcodes
- I want to rewrite the URL of a specific post with a specific custom field to easily analyze in Google Analytics
- 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