Forum Moderators: phranque
When the form is submitted, xyz.com/save.cgi will process the data and return param to my website: [abc.com...]
It works very well.
Now I want to hide the action="https://www.xyz.com/save.cgi" in my website:
.htaccess
RewriteRule ^mysave.cgi$ [xyz.com...] [L]
<form method="post" action="mysave.cgi">
....
<input type="hidden" name="return_url" value="http://www.abc.com/return.php">
</form>
When the form is submitted, I could not return to abc.com/return.php, the URL of IE changed to [xyz.com...] instead. And the body of this page is result=ok.
It seems I should add some "flags" to .htaccess file or there are some other methods to hide the 3rd POST URL in my form?