I have an Oracle HTTP Server (which is based on Apache) with two applications on it:
http://example.net/
-> opens the Life-Application (default port 80)http://example.net:7777/
-> opens the Test-Application
Now we want to simplify the URL, actually it should be like this:
http://application
-> opens the Life-Applicationhttp://example.net/
http://application-t
-> opens the Test-Applicationhttp://example.net:7777/
We added DNS records for application -> example.net
and application-t -> example.net
, however it cannot point to certain ports. (i.e. application-t
-> example.net:7777
is not possible)
I tried to configure VirtualHost but I failed. Both, http://application
and http://application-t
are always open the Life-Application, no matter what I tried.
How to setup the VirtualHost directive? Or do I have to make it differently?