Viewing 1 replies (of 1 total)
  • Thread Starter spinfly

    (@spinfly)

    FYI, this query on the DB will remove duplicates (rules defined first will be removed, rules defined later that are presumably more up-to-date will remain):

    DELETE
    n1
    FROM
    wp_redirection_items n1,
    wp_redirection_items n2
    WHERE
    n1.id < n2.id AND
    n1.url = n2.url

Viewing 1 replies (of 1 total)
  • The topic ‘Remove duplicates?’ is closed to new replies.