[ad_1]
Hi @08dennis08,
Thank you for using Ultimate 410. The first two are query parameters, and our plugin currently can’t handle those. I’m working on a solution and will let you know once it becomes available.
If you want to respond 410 for every URL that ends with .html or .htm, this would be the RegEx ~\.html?$~i. Check https://regex101.com/r/HCoJv1/1 for an explanation.
The correct RegEx for the latter case is ~^get(?:id)?/~i.
The i at the end signifies that both of these are case-insensitive, i.e., they’ll match .HTML and .html. If you don’t want that, remove the i.
Best regards,
Alex
