ronaldmacdonald
MIS
I have a URL running through Apache as follows:
name>/welcome
I didn't want to reveal the <server name> in the url so had a DNS entry created called <new server name> that resolved to <server name>
Now I can access my URL as server name> and it takes me to the correct page. So far so good!
When I try to traverse further down the url by selecting a link - the served page "reverts" back to showing <server name> in the url, for example:
name>/welcome/next_page
instead of
server name>/welcome/next_page.
In my httpd.conf , under the <VirtualHost *:443> section I have:
ServerName <server name>
ServerAlias <new server name>
I guess I also need something else in order that the alias is displayed at all points?
name>/welcome
I didn't want to reveal the <server name> in the url so had a DNS entry created called <new server name> that resolved to <server name>
Now I can access my URL as server name> and it takes me to the correct page. So far so good!
When I try to traverse further down the url by selecting a link - the served page "reverts" back to showing <server name> in the url, for example:
name>/welcome/next_page
instead of
server name>/welcome/next_page.
In my httpd.conf , under the <VirtualHost *:443> section I have:
ServerName <server name>
ServerAlias <new server name>
I guess I also need something else in order that the alias is displayed at all points?