Opened 21 months ago
Closed 18 months ago
#18508 closed defect (bug) (worksforme)
infinite Loop between canonical and 301 redirection
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Canonical | Version: | 3.2.1 |
| Severity: | normal | Keywords: | reporter-feedback |
| Cc: |
Description
When I redirect (301) a page A to another not canonical B, the B page is showed but with canonical pointing to A in the code.
This is a loop for search engines and bad for SEO.
I suggest the automatic change of canonical URL to the 301 redirected whit redirection plugin or .htaccess , or at least the option of disable canonical at all, or page to page, or the change of canonical page to page.
Change History (3)
comment:2
SergeyBiryukov — 21 months ago
I guess the ticket is about rel='canonical'.
It can be disabled too:
remove_action( 'wp_head', 'rel_canonical' )
Version 0, edited 21 months ago
by SergeyBiryukov
(next)
Note: See
TracTickets for help on using
tickets.

I'm afraid I couldn't really follow what you were describing.
However, it is possible to disable canonical if you would like to do so. Remove redirect_canonical from the template_redirect hook. Like this:
remove_action('template_redirect', 'redirect_canonical');