Last active
May 19, 2022 21:10
-
-
Save alirobe/a8de71c875a6c089cce0d7781897e2fb to your computer and use it in GitHub Desktop.
How to Migrate Umbraco Redirects into SEOChecker
This file contains 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
SELECT replace(umbracoRedirectUrl.url, '1075/', '') as url | |
,umbracoNode.id | |
,umbracoRedirectUrl.contentKey | |
FROM umbracoRedirectUrl | |
INNER JOIN umbracoNode on umbracoRedirectUrl.contentKey = umbracoNode.uniqueID | |
# Run in SSMS, right click results and export to CSV. Import CSV to SEOChecker. | |
# NB replace 1075 with your root node ID |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment