On one of my pages I changed the slug to form a different URL. E.g.
Old: http://example.com/old-slug
New: http://example.com/new-slug
WordPress has done it’s thing of redirecting http://example.com/old-slug to http://example.com/new-slug.
I’d like to remove this behaviour as a plugin I am using makes use of the slug in question and the redirect overrides its behaviour.
I checked this question, and checked my wp_postmeta
table for instances of _wp_old_slug
but nothing is returned. My server is Nginx so shouldn’t be affected by .htaccess files.
Is there anything else I can do to remove this redirect?