So i have some posts that are in URLs like this
http://www.mydomain.com/07/12/title-i-want-to-avoid-# where that # is a title number that I have many of in the dir -- title-i-want-to-avoid-1,title-i-want-to-avoid-2, title-i-want-to-avoid-3, etc.
except for the original which is
http://www.mydomain.com/07/12/title-i-want-to-avoid so missing that final -#
I want to redirect the rest to the home page. I have ended up here in a loop
RewriteCond %{THE_REQUEST} ^[A-Z]{3, 9}\ /.*title-i-want-to-avoid-.*$\\ HTTP/
RewriteRule ^(.*)title-i-want-to-avoid-.*$ /$1 [R=301,L]
anyone see my mistake?