Hello Friends,
Please help me get a Rewrite Rule to change & to %26 in URL. I have tried following scripts in .htaccess but was to no avail.
RewriteCond METHOD GET|HEAD
RewriteCond URL [^?]+&.*
RewriteHeader X-Redirect-Amp: .* 1
RewriteRule ([^?]+)&(.*) $1%26$2 [NS,I]
RewriteCond X-Redirect-Amp: 1
RewriteCond Host: (.*)
RewriteRule (.*) http\://$1$2 [I,RP]
2.
RewriteRule (.*)&(.*)\?(.*) $1%26$2\?$3 [I,NS]
RewriteRule ([^?]*)&([^?]*) $1%26$2 [I,NS]
3.
RewriteRule ([^?]+)&(.*) $1%26$2 [I,NS]
But was to no avail
Please help me get a Rewrite Rule to change & to %26 in URL. I have tried following scripts in .htaccess but was to no avail.
RewriteCond METHOD GET|HEAD
RewriteCond URL [^?]+&.*
RewriteHeader X-Redirect-Amp: .* 1
RewriteRule ([^?]+)&(.*) $1%26$2 [NS,I]
RewriteCond X-Redirect-Amp: 1
RewriteCond Host: (.*)
RewriteRule (.*) http\://$1$2 [I,RP]
2.
RewriteRule (.*)&(.*)\?(.*) $1%26$2\?$3 [I,NS]
RewriteRule ([^?]*)&([^?]*) $1%26$2 [I,NS]
3.
RewriteRule ([^?]+)&(.*) $1%26$2 [I,NS]
But was to no avail