How to redirect user's IP address to website IP address?

I have information on Amazon's server, but this information can only be accessed from my website IP address. How do I redirect the IP of users to the IP of the website when they use a link to information on my site?

Site host - iPage, Wordpress platform.

+3


source to share


1 answer


You can not. If the user makes a request, it will be their computer that makes the connection, so it will be their IP.



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

+1


source







All Articles