How to automatically redirect users who navigate to any CMS pages to Service PortalIssue This article describes some ways that can be used to automatically redirect users who land on any Content Management Site (CMS) pages to Service Portal. This is particularly useful to make sure that users who are still using the legacy CMS (either from a bookmark, direct link, etc.) are now redirected to Service Portal and are using it moving forward. Procedure There are three options to go around implementing this auto-redirection: Option #1 Modify the Layout (which is just a UI Macro) of the CMS page to contain the following code: <script>window.location.replace("/the_sp_suffix")</script> An example: Navigate to the CMS 'home' page.Under the Layout field if it's using the OOB layout it should be the "CMS 1 Column". Click on the "i" icon to go to that UI macro.At the bottom of the XML script, but before the </j:jelly> part, put the above code Visit the following community post for the same steps as well: https://community.servicenow.com/community?id=community_question&sys_id=139ff22ddb58dbc01dcaf3231f9619ba&view_source=searchResult Option #2 Create a custom global UI script do the redirect when it detects the URL to contain /your_cms_suffic. The following community post can be used as a guideline on how to accomplish this: https://community.servicenow.com/community?id=community_question&sys_id=61170fe5db1cdbc01dcaf3231f9619a7&view_source=searchResultzz Option #3 Modify the CMS page(s) to have a container (add an additional content block) that says "Go to the new portal. Click here" (or something similar). The link would contain the link to the Service Portal page (i.e. /sp).ReleaseApplicable to all versions that use CMS and Service PortalRelated LinksConfigure a content block Creating a global UI Script Configure Content Management sites