Add 'nofollow' attribute to SkinObject links#6890
Merged
mitchelsellers merged 2 commits intodnnsoftware:developfrom Jan 7, 2026
Merged
Add 'nofollow' attribute to SkinObject links#6890mitchelsellers merged 2 commits intodnnsoftware:developfrom
mitchelsellers merged 2 commits intodnnsoftware:developfrom
Conversation
enhancement/nofollow-login-register
valadas
approved these changes
Jan 7, 2026
mnouraei
approved these changes
Jan 7, 2026
mnouraei
approved these changes
Jan 7, 2026
mitchelsellers
approved these changes
Jan 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
enhancement/nofollow-login-register
Fixes #6889
Summary
This PR improves default SEO hygiene for authentication-related links in DNN by addressing unnecessary crawler discovery of low-value URLs.
Changes included:
rel="nofollow"to Login and Register links inUserAndLogin.ascxwhen the user is not authenticated.Disallow: *?returnurl=*rule to the defaultrobots.txtto reduce crawling of parameterized authentication URLs.Rationale:
Login and registration links are typically rendered site-wide (often in headers) and can generate multiple URL variations containing the
returnurlparameter. These URLs do not provide search value and may contribute to crawl traps, wasted crawl budget, and noisy index coverage reports.The changes are minimal, backward-compatible, and do not affect user behavior, while helping reduce crawler link-following and discovery of authentication endpoints by default.
No functional behavior changes were introduced.