I am trying to redirect a link with a port number to another link. I
had tried this with the intention that all requests ending with :3030/ should be mapped to http://domain_name/ <Proxy *> Order allow,deny Allow from all </Proxy> ProxyPass :3030/ http://domain_name/ ProxyPassReverse :3030/ http://domain_name/ This is not working, as a request like http://domain:3030 is not redirecting. But when i tries ProxyPass / http://domain_name:3030/ ProxyPassReverse / http://domain_name:3030/ A request like this http://domain_name redirects to http://domain_name:3030 Also tries "Redirect" Redirect :3030 http://domain_name rewrite_module is enabled. Is there any config error or the approach is bad. On Monday 10 February 2014 06:21 PM,
Thomas Eckert wrote:
|