How to redirect user’s IP into a website IP?

I have some info at Amazon server, but access to this info can be made just with my website IP. How to redirect users IP into a web site IP when they using a link to the info at my site?

Site hoster is iPage, platform WordPress.

Related posts

Leave a Reply

1 comment

  1. You can’t. If the user makes the request, it will be their computer that makes the connection, thus it will be their IP.

    The solution is to not make the user do the request, but to make the request yourself. You fetch the webpage at amazon (using curl, wget, …) and display the information to the user on your site.