使用.htaccess修改和重定向URL

时间:2014-02-06 08:55:42

标签: .htaccess url

我想修改然后重定向此网址:

localhost:8080/backend/tb/?r=premium/site/testResponse?order_id=122113&status=success

来自testResponse?order_id" to "testResponse&order_id

需要帮助请:)

1 个答案:

答案 0 :(得分:0)

此规则适用于您的DOCUMENT_ROOT/.htaccess文件:

RewriteEngine On

RewriteCond %{THE_REQUEST} \s/+(.+?/testResponse)\?(order_id=122113)(&.*)\s [NC]
RewriteRule ^ /%1&%2%3 [L,R=301]