• Share
    • Twitter
    • LinkedIn
    • Facebook
    • Email
  • Feedback
  • Improve this Doc
Show / Hide Table of Contents

Troubleshooting: Unable to Remove Page Redirect URLs

DNN Version: 09.02.00
12/08/2019 • 1 minute to read
Contributors  david-poindexter
12/08/2019  • 1 minute to read  • Contributors  david-poindexter

Symptom

Unable to remove page redirect URLs through the web UI.

Possible Cause

Unknown.

Solution

  1. Back up the site and the database.

  2. Go to Persona Bar > Settings > SQL Console.

  3. Find the identifier (TabID) of the problematic page.

    1. 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.

  4. Delete all redirects.

    1. Run the following SQL script:

      
      DELETE FROM taburls
      WHERE TabID = @X AND HttpStatus = 301
      
      

      where @X is the identifier of the page.

  5. Delete specific redirects.

    1. 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.
How to: Increase the Maximum File Size for UploadError: Login IP Filtering Is Currently DisabledError: Another User Has Taken Action on the PageError: Unknown Server Tag - DNNComboBoxError: Could not load file or assembly 'AWSSDK' or one of its dependenciesError: SQL TimeoutError: ArgumentNullException After a Move or an UpgradeTroubleshooting: Missing Resources After An UpgradeTroubleshooting: Mixed-Content Warnings When Using SSL OffloadingTroubleshooting: Profile Image Not ShownTroubleshooting: Page Remains in Draft ModeTroubleshooting: Site Theme Does Not LoadTroubleshooting: Incomplete Content LocalizationTroubleshooting: Missing Persona Bar
Back to top by the community, for the community... #DNNCMS