Redirecting from / to /owa

Lets assume that you have a webmail.domain.com that you’d like to redirect to webmail.domain.com/owa and you don’t want to use IIS redirection. How do you do it in HTML?

 

Simple, create a text file called “default.asp” and place it in the virtual directory that is handled by webmail.domain.com and place the following code inside it. Just Remember to replace domain.com with your own domain name.

 

<html>
<head>

<meta http-equiv="REFRESH" content="0;url=https://webmail.domain.com/owa">

/head>
</html>