I removed a print plugin and now the URLs are coming as 404. I need to redirect them to the correct URL
My old URLs were
www.URL.com/blog/year/month/post-title/print
I want to redirect them to their equivalent
www.URL.com/blog/year/month/post-title/
This is the htaccess I created, but it is not working. I put it in the root folder on top of everything else (not many) in the .htaccess, but no success
Am I missing something?
RewriteEngine on
RewriteRule ^(.*)/print/$ /$1 [R=301,NC,L]