WP 410 Manager Guide

Learn what this plugin does, how to use it, and how to add new 410 URLs or patterns.
Download Plugin File Here

Version

Current plugin version: 1.1

TESTED with WordPress 6.8.2 and PHP Version 7.4

What is WP 410 Manager?

WP 410 Manager lets WordPress admins manage "Gone" URLs directly. It sends an HTTP 410 status for specific URLs to indicate they are permanently removed. Ideal for spammy links, outdated pages, or unwanted query parameters.

How it works

Adding new redirects

  1. Go to WordPress Admin → Settings → 410 Manager.
  2. Enter one pattern per line in the text area.
  3. Plain string example:
    _g=
    product/edit
    products/edit
  4. Regex example:
    /\?product\/edit\/\d+/
    Matches URLs like ?product/edit/39577851.
  5. Click Save Patterns to apply changes immediately.

URL → Plugin Pattern Tool

Paste URLs below and click Convert to generate patterns you can paste into the WP 410 Manager plugin.

Generated Patterns

  • Query params are simplified (e.g., ?_g=12345_g=).
  • Regex Mode converts numbers to \d+ and escapes everything else.
  • Case-insensitive adds the /i flag to your regex.

Tips & Notes

Plain string example:

curl -I "https://yourdomain.com/?_g=12345"

If the pattern matches, you should see: HTTP/1.1 410 Gone

Regex example:

curl -I "https://yourdomain.com/?product/edit/39577851"

With a regex pattern like /\?product\/edit\/\d+/, this URL will return 410 Gone as well.

Use these commands to quickly verify that your 410 patterns are working before saving them in the plugin.