Hi, I'm attempting to hide a part of an url from the address,
because it's useless mouse coordinates sent due to input type="image"
The URL is:
www.example.com/search.html?mode=fulltext&query=HelloWorld&ssubmit.x=0&ssubmit.y=0
I want to hide the ssubmit.x and ssubmit.y part. I tried adding the following rule to .htaccess, but without success:
RewriteRule &ssubmit[\.]x=[0-9]+&ssubmit[\.]y=[0-9]+$ [L]
What am I doing wrong?