Skip to page contentSkip to chat
ServiceNow support
    • Community
      Ask questions, give advice, and connect with fellow ServiceNow professionals.
      Developer
      Build, test, and deploy applications
      Documentation
      Find detailed information about ServiceNow products, apps, features, and releases.
      Impact
      Accelerate ROI and amplify your expertise.
      Learning
      Build skills with instructor-led and online training.
      Partner
      Grow your business with promotions, news, and marketing tools
      ServiceNow
      Learn about ServiceNow products & solutions.
      Store
      Download certified apps and integrations that complement ServiceNow.
      Support
      Manage your instances, access self-help, and get technical support.
Site (URL Suffix) for CMS is case sensitive - Support and Troubleshooting
  • >
  • Knowledge Base
  • >
  • Support and Troubleshooting (Knowledge Base)
  • >
  • Site (URL Suffix) for CMS is case sensitive
KB0551889

Site (URL Suffix) for CMS is case sensitive


3106 Views Last updated : Jul 24, 2025 public Copy Permalink
KB Summary by Now Assist

Issue

The link to access a CMS site uses the following format:

https://<instance>.service-now.com/<site suffix>

The <site suffix> is defined by the URL Suffix field on the Site form.

A URL only redirects the user to the CMS Site if the <site suffix> case is entered correctly.

Symptoms

The following is reproducible:

  • https://<instance>.service-now.com/ESS ....directs to the standard non-CMS User Interface
  • https://<instance>.service-now.com/Ess .....directs to the standard non-CMS User Interface
  • https://<instance>.service-now.com/ess .....directs to CMS Site as expected

Cause

A problem record was created for this issue. Development confirmed the behavior and closed this problem noting there no plan to alter this behavior in any of the upcoming releases.

Resolution

As a result, careful consideration must be made when creating a custom CMS site and populating the URL Suffix field on the Site record.

However, the following solution can be used as a workaround (please note that this solution is provided as is and should be run at one's own risk as this is only provided as a demonstration on how to workaround this issue):

Create a global UI script:

  • API Name: Portal case insensitivity redirect
  • Global: true
  • Active: true
  • Script:
    function portalRedirect() {
      if ((document.URL.indexOf('Ess') != -1) || (document.URL.indexOf('ESS')) != -1) {
        // replace ess with the site name and make sure to cover all cases (i.e. ESS, Ess, EsS, ESs, etc.)
        window.location = '/ess/';
      }
    }
    addLoadEvent(portalRedirect);​

The world works with ServiceNow.

Sign in for more! There's more content available only to authenticated users Sign in for more!
Did this KB article help you?
Did this KB article help you?

How would you rate your Now Support digital experience?

*

Very unsatisfied

Unsatisfied

Neutral

Satisfied

Very satisfied

Very unsatisfied

Unsatisfied

Neutral

Satisfied

Very satisfied

What can we improve? Please select all that apply.

What are we doing well? Please select all that apply.

Tell us more

*

Do you expect a response from this feedback?

  • Terms and conditions
  • Privacy statement
  • GDPR
  • Cookie policy
  • © 2025 ServiceNow. All rights reserved.