Redirects and Vanity URLs Advanced features Current: Server Migration / Redirect a custom URL to Confluence Server Migration / Redirect a custom URL to Confluence Sometimes, it may be required to redirect existing URLs to Confluence without losing access to the existing URLs you gave out to customers. This can be achieved by having a webserver redirect URLs to the app's /go suffix and then creating redirects for the previous pages to the new pages.A common scenario where this might happen is if you migrate a web page to Confluence. The server will be configured to rewrite the domain and path to the app's base URL in Confluence, e.g. https://confluence.example.com/go.Example: Prerequisites:An external HTTP server serving the domain you want to redirect. This guide will give you configurations for Apache and nginx, but others should work tooThe domain you'd like to redirect pointing to that serverKnowledge of and permissions to edit that HTTP server's configuration Step 1: Create Confluence pages corresponding to your old URLsFor all existing pages in your website that you'd like to preserve, you need to create a Confluence page. Then copy the contents of each page. Step 2: Create URL mappings in the appOnce you've created all Confluence pages, you need to create the URL mappings in the app. Do this as described on Configure the App via the Main Configuration Page. Make sure each entry's shortened URL corresponds to the path that the page used to have.Example: If you used to have the pages http://example.com/index.html, http://example.com/product.html and http://example.com/about.html, create entries with the shortened URLs index.html, product.html and about.html. Step 3: External HTTP server configurationDepending on the HTTP server you are using, you will have to use different configuration steps. Note that this guide omits the configuration steps necessary to get the HTTP server to serve your domain. Refer to other configuration guides for that.This document assumes your domain is example.com and your Confluence instance is hosted at confluence.example.com.For TLS support, create a similar directives, redirecting to https://confluence.example.com/go . Step 3a: Apache configurationFor this to work, you must have mod_alias enabled and working in your apache configuration. Then edit your apache configuration or add a virtual host file containing the following configuration: Apache redirection configuration <VirtualHost *:80> ServerName example.com RedirectPermanent / http://confluence.example.com/go </VirtualHost> CODE Step 3b: nginx configurationEdit your nginx.conf file to contain the following lines: nginx redirection configuration server { server_name .example.com; return 301 http://confluence.example.com/go$request_uri; } CODE Done!Make sure you test your setup to see if everything works as expected. SAML Single Sign-On is available for Atlassian Server & Atlassian Data Center products. Our Jira Data Center, Confluence Data Center, Bitbucket Data Center, Jira Server, Confluence Server, Bitbucket Server and other apps are all available on the Atlassian Marketplace.