we have a WordPress 4.x website with some plugin that verify the availability of rooms. Now we have an url like this:
http://www.pluto.com/en/check-availability/?lang=en¶m1=val1¶m2=value2¶m3=value3¶m4=838¶m5=value5¶m6=value6
We want to change param4=838 with param4=631 than redirect to the new page:
http://www.pluto.com/en/check-availability/?lang=en¶m1=val1¶m2=value2¶m3=value3¶m4=631¶m5=value5¶m6=value6
We want to do this with .htaccess. How can we do that?
Place this rule just below
RewriteEngine On
line:The following permalink rewrite code should be included in your .htaccess file
And if you want to be passing arguments in url. Take this example and kindly go through the below link completely
link here