我想修改然后重定向此网址:
localhost:8080/backend/tb/?r=premium/site/testResponse?order_id=122113&status=success
来自testResponse?order_id" to "testResponse&order_id
需要帮助请:)
答案 0 :(得分:0)
此规则适用于您的DOCUMENT_ROOT/.htaccess
文件:
RewriteEngine On
RewriteCond %{THE_REQUEST} \s/+(.+?/testResponse)\?(order_id=122113)(&.*)\s [NC]
RewriteRule ^ /%1&%2%3 [L,R=301]