Forum Moderators: phranque
Welcome to WebmasterWorld! Please check out our forum charter [webmasterworld.com].
Start with Apache mod_alias, mod_rewrite, and mod_proxy [httpd.apache.org], and see which of those approaches might give you the functionality you want.
Jim
Thanks for the info...I tried proxy and the other directives. However, I don't think its a proxy I want to perform...
I may be msitaken here but what I am looking into doing is forwarding requests to popmail.example.com to www.example.com:50000.
I have a good understanding of the apache server but have been out of the configuration loop for about 1 year and can't seem to find the right information.
Any help is greatly appreciated!
- Lou
[edited by: jdMorgan at 1:15 am (utc) on Jan. 21, 2006]
[edit reason] Example.com [/edit]
Syntax: ProxyPass path urlThis directive allows remote servers to be mapped into the space of the local server; the local server does not act as a proxy in the conventional sense, but appears to be a mirror of the remote server. Path is the name of a local virtual path; url is a partial URL for the remote server.
The other choice is to redirect the request, exposing the true mail server URL, and requiring the port number to be maintained through subsequent requests in order to function.
Jim