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!
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!
Unfortunately it doesn't work.
I too would like to redirect the customer logut on login.jsp
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.