Modify and Redirect URL using .htaccess -
i want modify , redirect url:
localhost:8080/backend/tb/?r=premium/site/testresponse?order_id=122113&status=success
from testresponse?order_id" "testresponse&order_id
need please :)
this rule should work in document_root/.htaccess
file:
rewriteengine on rewritecond %{the_request} \s/+(.+?/testresponse)\?(order_id=122113)(&.*)\s [nc] rewriterule ^ /%1&%2%3 [l,r=301]
Comments
Post a Comment