I want to forward a link to another link but internally. I've set up the wordpress to show post links like this - / which only throws 404 error. However If you visit / (location instead of medical), it works. So I want to forward any url containing medical
to location
.
Thanks in advance for your help
I want to forward a link to another link but internally. I've set up the wordpress to show post links like this - https://asif.bzstage/medical/website/nyc/ which only throws 404 error. However If you visit https://asif.bzstage/location/website/nyc/ (location instead of medical), it works. So I want to forward any url containing medical
to location
.
Thanks in advance for your help
Share Improve this question asked May 24, 2019 at 18:52 Asifur RahmanAsifur Rahman 52 bronze badges 2 |1 Answer
Reset to default 0The code below should work for you as long as:
- Your CPT slug is
location
. - You don't have a custom
query_var
registered for your CPTlocation
. You probably don't have. Refer to https://codex.wordpress/Function_Reference/register_post_type#query_var for more information, it's very usefull, btw.
And I'm assuming the string nyc
is the slug of your single custom post.
function rewrite_medical_url() {
add_rewrite_rule( '^medical/[^/]+/([^/]+)/?', 'index.php?location=$matches[1]', 'top' );
}
add_action( 'init', 'rewrite_medical_url' );
Put the code in your functions.php file.
In order for the rewrite rule start taking effect you should visit Settings > Permalinks to flush your permalinks.
location
– Asifur Rahman Commented May 27, 2019 at 14:28