cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How to Redirect SAP CC Backoffice to Custom Domain

Mohsen_75
Discoverer
0 Likes
706

Hi everyone,

We’ve recently set up a new domain specifically for accessing the SAP Convergent Charging (SAP CC) Backoffice. The application is currently accessible via:

https://myDomain.com/backoffice/login.zul

We would like to simplify this so that users can access the Backoffice directly via:

https://myDomain.com

Is there a recommended way to configure a redirect or rewrite so that accessing the root domain https://myDomain.com automatically takes users to /backoffice/login.zul?

Any best practices, configuration examples, or guidance would be greatly appreciated.

Thanks in advance!

Best regards,

Mohsen Ahyaie

Accepted Solutions (0)

Answers (1)

Answers (1)

mansurarisoy
Contributor
0 Likes

By following the instructions in the Creating a Website Redirect document, you can redirect the root domain to the /backoffice path. The following directive should work when added to the redirect file:

RedirectMatch 302 "^/$" "/backoffice"

You can change the redirect status code to 301 if you want the redirection to be considered permanent.