AEM Cloud Service: Runtime Exclusion of External Links from Link Checker
I'm experiencing an issue where external links are incorrectly flagged as broken by AEM's Link Checker, as documented in KA-27042
I'm aware of two existing methods to exclude links from the Link Checker:
- HTML attribute approach:
<a href="https://www.example.com" x-cq-linkchecker="skip">Link Text</a>- OSGi configuration approach: Configure link checker service to exclude specific external domains via OSGi config.
Is there a content-author-friendly way to exclude external links from the Link Checker at runtime in AEM as a Cloud Service?
Specifically, I'm looking for a solution that would allow:
- Content authors to exclude problematic links without developer intervention
- Runtime exclusion when false positives are discovered in production
- No code deployment required for link exclusions