During the development of a site, we've had the "Enable URL Tracker" feature turned on under the "Redirect URL Management" tab and accumulated 21 pages of redirect URLs.
Is there any way to completely clear out this history in one step?
On a side note, why do most of these entries seem to redirect to themselves?
Is there any way to completely clear out this history in one step?
Perhaps not through the UI, but if you have database access you can truncate the umbracoRedirectUrl table:
TRUNCATE TABLE umbracoRedirectUrl
why do most of these entries seem to redirect to themselves?
The URL tracking feature is very new, and is not what I would call robust. This is actually a new bug to me though, so I'd recommend logging it here: http://issues.umbraco.org/issues
Remove all redirect url tracking history
During the development of a site, we've had the "Enable URL Tracker" feature turned on under the "Redirect URL Management" tab and accumulated 21 pages of redirect URLs.
Is there any way to completely clear out this history in one step?
On a side note, why do most of these entries seem to redirect to themselves?
Perhaps not through the UI, but if you have database access you can truncate the
umbracoRedirectUrl
table:The URL tracking feature is very new, and is not what I would call robust. This is actually a new bug to me though, so I'd recommend logging it here: http://issues.umbraco.org/issues
is working on a reply...