URL Rewrite: Shortname to FQDN

One common issue I’ve seen with doing HTTPS is the short name for a server. Unless you get the correct certificate, if a user goes to the short name a server (https://server1 in stead of https://server1.contoso.com), the certificate will come as invalid. There’s a quick fix for this using IIS URL Rewrite. URL Rewrite can also be used to direct users to the HTTPS site, instead of using HTTP.

First you need to install URL Rewrite. For new versions of IIS (Server 2012 R2 and higher), that means using the Web Platfrom Installer. Just search for URL Rewrite.

Once the plugin is installed, add a new rule, and select blank rule. Give your rule a name, and expand the Match URL box. In “Match URL”, supply “^(.)$” as the pattern.

Now, we need to create a new condition. Expand the Condition box and click add. Change the “Condition input” to {HTTP_HOST} and “Check if input string” to “Does Not Match the Pattern”. Then, fill in the pattern box per the screenshot.

I have a 2-part domain name. If you have more than two parts, it would follow the same pattern. For example, nyc.contoso.com becomes “^.*\.nyc\.contoso\.com$”.

Finally, we need to tell IIS what to do. Expand the Action section, and fill it in like this:

That’s it, you’re all set. Apply the rule and test it out.

If you’d rather do this by modifying the web.config file, here’s the XML:

<rewrite>
<rules>
<rule name=”Redirect Shortname to FQDN” stopProcessing=”true”>
<match url=”^(.*)$” />
<conditions>
<add input=”{HTTP_HOST}” pattern=”^.*\.contoso\.com$” negate=”true” />
</conditions>
<action type=”Redirect” url=”https://{HTTP_HOST}.contoso.com/{R:1}” />
</rule>
</rules>
</rewrite>

Disclaimer

All content provided on this blog is for information purposes only. Windows Management Experts, Inc makes no representation as to accuracy or completeness of any information on this site. Windows Management Experts, Inc will not be liable for any errors or omission in this information nor for the availability of this information. It is highly recommended that you consult one of our technical consultants, should you need any further assistance.

Share:

Facebook
Twitter
LinkedIn

Contact Us

On Key

More Posts

Mastering Azure AD Connect - A Comprehensive Guide by WME
Active Directory

Mastering Azure AD Connect – A Comprehensive Guide

Modern businesses are fast moving toward cloud-based infrastructure. In fact, cloud-based business is not just a trend anymore but a strategic necessity. Microsoft’s Azure Active Directory (Azure AD) has become a frontrunner in this domain. It

Read More »
Security Best Practices in SharePoint
Office 365

Security Best Practices in SharePoint

Microsoft SharePoint is an online collaboration platform that integrates with Microsoft Office. You can use it to store, organize, share, and access information online. SharePoint enables collaboration and content management and ultimately allows your teams to

Read More »
The Ultimate Guide to Microsoft Intune - Article by WME
Active Directory

The Ultimate Guide to Microsoft Intune

The corporate world is evolving fast. And with that, mobile devices are spreading everywhere. As we venture into the year 2024, they have already claimed a substantial 55% share of the total corporate device ecosystem. You

Read More »
Protecting Microsoft 365 from on-Premises Attacks
Cloud Security

How to Protect Microsoft 365 from On-Premises Attacks?

Microsoft 365 is diverse enough to enrich the capabilities of many types of private businesses. It complements users, applications, networks, devices, and whatnot. However, Microsoft 365 cybersecurity is often compromised and there are countless ways that

Read More »
Be assured of everything

Get WME Services

Stay ahead of the competition with our Professional IT offerings.