Methodology: This check follows wSEO methodology 1.0. How the assessment works

Compare the destination with the open URL

Check self-references without false positives

Start with menus and breadcrumbs in the browser, then compare exact addresses. An anchor, parameter, locale switch or different canonical destination is not automatically an error.

A check compares the current page URL with a link destination and identifies a match
Useful evidence includes the page, link location, destination and canonical URL.

Simple check

  1. Open a page and find the active menu item or final breadcrumb.
  2. Hover and copy the link destination.
  3. Compare it with the address bar and rel="canonical" in the HTML source.
  4. If a normal click merely reloads the same canonical URL, save a screenshot and both addresses.
  5. Repeat on an adjacent page using the same template.

How to classify a finding

Self-reference issue levels
SituationLevelAction
The active item is text with a clear stateNo issueCheck keyboard use and contrast.
One editorial link intentionally points to the same pageMinorConfirm the editorial purpose.
Menus, logo or breadcrumbs repeatedly reload the current pageTemplate issueRepair the shared component.
The link changes an anchor, locale or meaningful parameterReview purposeDo not remove automatically.

Technical check

document.querySelectorAll('a[href]').forEach(a => {
  const link = new URL(a.href, location.href);
  const here = new URL(location.href);
  link.hash = ''; here.hash = '';
  if (link.href === here.href) console.log(a, link.href);
});

Run this in DevTools Console only on a trusted page. It lists candidates on one page but cannot decide whether each link is useful.

Independent method and discrepancies

A crawler can report internal outgoing destinations equal to their source URL. Results vary with trailing-slash, HTTP/HTTPS, parameter and JavaScript normalisation, so examples need browser confirmation.

Any automated price covers only the templates and scope stated on the service page. Follow the step-by-step guide for your own repair.