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

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -