I'm trying to set all EN pages of a website to the statuscode 410. The URLs look like this:
https://example.com/en/terms-and-conditions/
https://example.com/en/sitemap/
https://example.com/en/category/page-1/
https://example.com/en/category/page-2/
https://example.com/en/category/page-3/subpage-1/
I tried different things, but none worked:
RewriteEngine On
RewriteRule ^/en(/.*)?$ - [G,NC]
this also didn't work:
RewriteEngine On
RewriteRule ^/en(.*)$ - [NC,R=410,L]
What am I doing wrong?