Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hello friend!
Is it that you want visitors to :1234 to be redirected to the base domain, or that you want what is visible at :1234 to be visible without having to add the :1234 to the URL? Most people ask for the second one, and both require a radically different approach.
In the case that you want :1234 to redirect to the base domain, you need a web server listening on port 1234 that takes all requests and routes them to port 80. If using Apache, you would use mod_rewrite to do the job:
https://httpd.apache.org/docs/2.4/rewrite/remapping.html
Your virtual host in this case would reference port 1234 instead of port 80, so this:
<VirtualHost *:80>
Would instead be this:
<VirtualHost *:1234>
Kind Regards, Jarland