Ricardo Masao Shigeoka
Ricardo Masao Shigeoka

Reputation: 266

Wordpress - Post redirect to main category

My website has posts with multiple categories. Today, I can access the post through two links:

URL 1 - mywebsite.com/category-A/post-name

URL 2 - mywebsite.com/category-B/post-name

However, when I access URL 2, it automatically redirects to URL 1. Is it possible to stop this auto redirect?

Thanks,

Upvotes: 1

Views: 561

Answers (1)

Nemus
Nemus

Reputation: 3995

To turn off Canonical URL Redirection, you can add the following code to your theme’s functions.php file.

remove_action('template_redirect', 'redirect_canonical');

Upvotes: 1

Related Questions