Please help me with mod_rewrite rules.
I need to skip every occasion of parameter '&lang=' and any of its value (en, it...) in URL and redirect 301 as it is without this parameter(s).
Examples:
I want to all of these URL's examples:
www.my_domain.com?id=3343&lang=de
www.my_domain.com?id=3343&lang=it
www.my_domain.com?lang=en&id=3343
www.my_domain.com?id=3343&lang=en&lang=it
redirect me to the same URL:
www.my_domain.com?id=3343
How can i do this with mod_rewrite rule?
Thanks!