How to redirect logout screen from customer portal

Tiffany Owen
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 19, 2017

Whenever a user is logged into a dashboard and logs out, it takes them back to the /login.jsp page after confirming they want to log in again. Which is perfect.

However, whenever a user is logged into a customer portal, and then logs out, it takes them to a login screen to log straight back into that same customer portal.

How can I redirect the user back to the main /login.jsp page (just like the first situation described) when logging out of a customer portal? Thanks!

1 answer

0 votes
Moga
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
October 29, 2017

Hi Tiffany,

You can use Rewrite Valve that was introduced in Tomcat 8. There's more information about this in How to customize customer portal URL in JIRA Service Desk Server. More specifically, your Rewrite Rule will be:

RewriteCond %{HTTP_HOST} .*\/customer\/portal\/.*\/user\/login\?destination=portal%2F1&logout=true [NC]
RewriteRule ^(.*)$ http://jira.domain.com/login.jsp [R=301,L]

I hope that this helps!

Cheers!

MarceSannai April 5, 2020

Unfortunately it doesn't work.

I too would like to redirect the customer logut on login.jsp

Suggest an answer

Log in or Sign up to answer