• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

Rewrite Rule to change & to %26 in URL

S

sonaul

Guest
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
 
Back
Top