When a user click post,after filling a form,it post the form datas into a php from where it is sent (redirected) to another url.
But the form has confidential datas,that is been shown in the address bar while redirecting.
The url is seen as http://payment.kkl.com?token.jsp?id=ajsjs&password=pefwhkewhxxx
data is being posted to a php file using post method.From the php ,this datas are again encrypted and along with some raw data it is rediredted to an external url as I have shown.This external url has parameters that I dont want to expose i need to hide the id and password,the url in the address bar should be shown with out the id and password..Anyway to do this using htaccesS??