How to set up forward/reverse proxy in apache?

oracle

New Member
Messages
430
Reaction score
0
Points
0

Sharky

Community Paragon
Community Support
Messages
4,399
Reaction score
94
Points
48
Only way I have been able to do that is using my routers IP forwarding, then using my external IP from inside the network; the router's set up with NAT loopback functionality so it works.

Not quite http://localhost/ , but close enough, maybe? Doesn't leech any bandwidth quotas that may be imposed by your ISP either.
 

t2t2t

New Member
Messages
690
Reaction score
0
Points
0
I think you're looking for redirecion by apache. Insert following in .htaccess (Place it in the root of web directory):
Code:
Redirect /http-bind http://localhost:5280/http-bind

BUT I'm not sure if this works with ajax calls.
 
Top