I've got outdated requests coming into a custom port (2104) on my server.
I've now setup my machine to handle those requests at:
http://subdomain.server.com:80
But how can I redirect old requests coming in like that? (through httpd magic)
I've got outdated requests coming into a custom port (2104) on my server.
I've now setup my machine to handle those requests at:
http://subdomain.server.com:80
But how can I redirect old requests coming in like that? (through httpd magic)
In your Apache config, you can make a VirtualHost for the port 2104 with a redirect to the proper URL.
This is assuming your browser can follow redirects. If you need something fancy like a proxy, that's a different story.