My current URI is http://example.com/blog/clients/clientname/?file=media.flv.
I need all hits to that exact URI structure to 301 to the same structure but change the file extension to MP4.
What are the htaccess rules I need to setup?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Following code in .htaccess should work for you:
Remember you cannot match QUERY_STRING in RewriteRule.
NCflag is for ignore case comparison, you can remove it if you don’t need it.