I want to redirect a webpage to a destiation WITH a referer. The straight forward solution is:
<html><head><meta http-equiv="refresh" content="0; url=example.com" /></head><body></body>
The problem is, this works in Chrome, Safari, but does not work in IE and FF because these browsers don't send referer. What can I do to accomplish the task, because the destination require an referer in order to process.
You could try using a javascript redirect based on automatic form submission.