I have products.php which I'm trying to change into /europe-cell-phone/. I've made a rewrite rule to do this:
RewriteRule ^europe-cell-phone/$ products.php [L]
However I also need to 301 the old page (products.php) to /europe-cell-phone/. I'm trying to do this with the following rule:
RewriteRule ^products.php$ http://www.eurobuzz.com/europe-cell-phone/ [R=301,L]
However of course when I go to products.php expecting to be redirected I hit an infinite redirect loop, is there any solution to this? Never encountered this problem before.