I have a domain name that is an alias
the primary domain name and the alias are pointing to the same web page
If someone used the alias, i want him to be directed to another page.
i tried
but the referrer is always nothing
the primary domain name and the alias are pointing to the same web page
If someone used the alias, i want him to be directed to another page.
i tried
VB.NET:
If Request.UrlReferrer.AbsoluteUri = myAlias Then
Response.Redirect("~/album.aspx")
End If