How to route a request from my server through an assigned IP address instead of main?
If a script on my dedicated server accesses some remote page, then the remote page has the request originating from my main shared IP. e.g., if my main shared IP is xxx.xxx.xxx.10, then the REMOTE_ADDR variable at the target script will be xxx.xxx.xxx.10.But I have a large number of IP addresses assigned to this server. How can I route the request through one of them? e.g., if the address xxx.xxx.xxx.11 is assigned to this server, how can the request be made to originate from that?
Would this involve the setting up of proxies, and if so, how?