In case you need simple web redirect page from your domain to other (e.g. example.yourdomain.com redirect to www.example.com), use Azure Storage account with static web page functionality.
Prerequisites:
- Azure Subscription
- Access to yourdomain.com management
How to setup
- Create Azure storage account
- Enable Static Web site in Data Management Menu, set index.html as Index document name.
- Create file index.html on your local computer with following content bellow
- Upload index.html to root of $web container
- Configure Custom domain for storage account in Security + Networking menu in Networking submenu, for this step you need access to your domain management platform to create CNAME record to validate that you are owner of domain.
<!DOCTYPE html>
<html>
<head>
<title>Redirect Site</title>
<meta http-equiv = "refresh" content = "0; url = https://www.example.com" />
</head>
<body>
<p>Redirecting...</p>
</body>
</html>