Essentially I want to go to https://vhost.vdomain.tld and see what I see when I go to http://vhost.vdomain.tld:81/webmail. How can I achieve this?
Add an index.php file with the following content in the web root of vhost.vdomain.tld: <? header("Location: http://vhost.vdomain.tld:81/webmail"); exit; ?>
Placing that in the header with the http://vhost.vdomain.tld:81/webmail puts http://actualhost.actualdomain.tld:81:/webmail
Try Code: <? header("Location: http://vhost.vdomain.tld:81/webmail[B][COLOR="Red"]/[/COLOR][/B]"); exit; ?>
Works beautifully. Now when I browse to: http://vhost.vdomain.tld it basically redirects to: http://vhost.vdomain.tld:81/webmail Thanks!