Our Story

Who we are and how we solve complex IT challenges.

Our Certifications

Microsoft certifications and partnerships validating our technical expertise.

Leadership

Meet the Experienced Leadership Team Driving WME’s Success

Advisory Updates

Expert guidance on Microsoft, security, and compliance developments.

Case Studies

Real-world outcomes from complex Microsoft-focused IT engagements.

Podcast

Podcasts, panels, and interviews where WME leaders share how they help high-growth companies and IT partners scale.

Ebooks

Practical guides on the Microsoft moves you can’t afford to get wrong.

Financial Industry

Secure technology solutions for regulated banks and financial institutions.

Healthcare

Secure Microsoft solutions for compliant, connected, and modern healthcare organizations.

Manufacturing

Cloud and security solutions supporting modern manufacturing operations.

Non-Profit

Cost-efficient Microsoft solutions for mission-driven organizations.

Public Sector

Microsoft-based IT services for secure public sector modernization.

High Tech

Scalable cloud, security, and staffing for fast-growing technology companies.

SMBs

Scalable cloud, security, and staffing for fast-growing technology companies.

Cloud Migration Services

Transition your workloads to the cloud securely for greater scalability and performance.

Data Migration Services

Securely transfer your business data with minimal downtime and maximum integrity.

Application Migration Services

Move your applications seamlessly to modern platforms with minimal business disruption.

Identity & Security Migration Services

Strengthen identity management and security while transitioning to modern Microsoft solutions.

Security Solutions

Protect your business with proactive cybersecurity, compliance, and risk management solutions.

Endpoint Management

Secure, manage, and monitor every device with modern endpoint management solutions.

Licensing Optimization

Get discounted pricing, a dedicated licensing team, and a plan that fits how many seats you actually use.

Power Platform

Unlock the full potential of the Microsoft Power Platform Suite to streamline operations, automate repetitive tasks, and gain real-time insights that drive business growth.

Sharepoint Solutions

Supercharge your business productivity and enhance visibility through our proven SharePoint expertise.

IT Staffing

Connect with skilled IT professionals to strengthen your team and accelerate project delivery.

Accounting & Finance

Connect with experienced accounting and finance professionals to support your business goals.

URL Rewrite: Shortname to FQDN

November 17, 2017

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

Get Microsoft Updates Before They Cost You Downtime

Retirement dates, licensing changes, and security updates from a Microsoft-exclusive team, sent when they matter, not on a filler schedule.

Related Posts