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
Picture of Matt Tinney

Matt Tinney

Professional IT executive & business leader having decades of experience with Microsoft technologies delivering modern-day cloud & security solutions.

Contact Us

=
On Key

More Posts

WME Cybersecurity Briefings No. 020
Cyber Security

WME Security Briefing 26 July 2024

Pro-Houthi Group Targets Yemen Aid Organizations with Android Spyware Overview A suspected pro-Houthi group, OilAlpha, is targeting humanitarian organizations in Yemen with advanced Android spyware. The operation is associated with the activity cluster codenamed OilAlpha. It

Read More »
WME Cybersecurity Briefings No. 019
Cyber Security

WME Security Briefing 23 July 2024

Samba File Shares Targeted by DarkGate Malware in Recent Cyber Offensive Overview Recent investigations by Palo Alto Networks uncover a brief but significant cyberattack campaign utilizing DarkGate malware. This malicious software exploited Samba file shares to

Read More »
WME Cybersecurity Briefings No. 018
Cyber Security

WME Security Briefing 15 July 2024

OVHcloud Mitigates Record-Breaking 840 Million PPS DDoS Attack Overview In April 2024, OVHcloud, a top French cloud computing firm, successfully stopped a massive DDoS attack. The attack hit a record-breaking rate of 840 million packets per second

Read More »
E-Commerce Security - Solutions for Online Retailers
Azure

E-commerce Security – Solutions for Online Retailers

Today’s hyper-charged e-commerce landscape demands top-notch cybersecurity measures. Cybersecurity for this bustling sector isn’t just about ticking a technical box; it’s the cornerstone of building trust. As businesses and consumers flock to the online space, the

Read More »
Be assured of everything

Get WME Services

Stay ahead of the competition with our Professional IT offerings.

=