Symptom
Unable to remove page redirect URLs through the web UI.
Solution
- Back up the site and the database.
- Go to .
-
Find the identifier (TabID) of the problematic page.
-
Run the following SQL script:
SELECT TabID FROM tabs
WHERE TabName = '@NameOfPage'
where
@NameOfPage is the name of the page.
Note: You will need the TabID returned by the query in the following steps.
-
Delete all redirects.
-
Run the following SQL script:
DELETE FROM taburls
WHERE TabID = @X AND HttpStatus = 301
where
@X is the identifier of the page.
- Delete specific redirects.
-
Run the following SQL script:
DELETE FROM taburls
WHERE Tabid = @X AND HttpStatus = 301 AND Url = '@Y'
where
- @X is the identifier of the page, and
- @Y is the URL to remove.