- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2024 07:37 PM
I want my users to be redirected to an external website when they logout.
I found this OOTB script that I thought might do what I want:
However, when I activated it, instead of taking me to Google, it took me here:
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2024 07:47 PM
On line number 9, you are trying to append gotoURL with the existing logout URL. Try updating
response.sendRedirect(gotoURL);
Hope this works.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2024 07:47 PM
On line number 9, you are trying to append gotoURL with the existing logout URL. Try updating
response.sendRedirect(gotoURL);
Hope this works.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2024 09:17 PM
Thank you very much!