Hello
I need to redirect some sub directories of a site by identifying parameters in the URL
I have several urls I need to 301 redirect to a different site permenatly
EXAMPLE
I would like to redirect 301 the following URLs
www.example.com/test/Z_InitLoginPcode.do?country=GB&language=EN
www.example.com/test/Z_InitLoginPcode.do?country=DE&language=DE
www.example.com/test/Z_InitLoginPcode.do?country=FR&language=FR
There's also the following URL that I want to stay where they are.
www.example.com/test/Z_InitLoginPcode.do?country=ES&language=ES
www.example.com/test/Z_InitLoginPcode.do?country=CH&language=DE
www.example.com/test/Z_InitLoginPcode.do?country=CH&language=FR
And I would like the redirect to go to
www.newexample.net
HELP! Please...