Learn what this plugin does, how to use it, and how to add new 410 URLs or patterns.
Download Plugin File Here
Current plugin version: 1.1
TESTED with WordPress 6.8.2 and PHP Version 7.4
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.
410 Gone
response.%2F
are automatically handled._g= product/edit products/edit
/\?product\/edit\/\d+/Matches URLs like
?product/edit/39577851
.
Paste URLs below and click Convert to generate patterns you can paste into the WP 410 Manager plugin.
?_g=12345
→ _g=
).\d+
and escapes everything else./i
flag to your regex..htaccess
file HERE and instantly generate plugin-ready values. WP_DEBUG
to see which URLs trigger 410s in WordPress./i
.curl -I
in the terminal: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.