Hi, I use WordPress and one Template added .menu to all of my URLs. I changed my Template and i got many 404. I d like to strip the ".menu" chars at the end of each Url and use a 301 redirect for Google to find the new right URL. I would like to redirect Url like"http://mydomain.com/my-url/.menu" to "http://mydomain.com/my-url/""http://mydomain.com/my-url-2/.menu" to "http://mydomain.com/my-url-2/""http://mydomain.com/my-url-3/.menu" to "http://mydomain.com/my-url-3/"... and so onthank you
Try something like this as part of your rewrite rules: RewriteRule (.*)\.menu $1 [R=301,L] Code (markup):