Forum Discussion
APM session ended/timeout issue
Hi, is there a way to prevent the default F5 webpages from appearing to users when session timeout or end maybe by redirecting them to another webpage or anything ?
3 Replies
- Seth_Cooper
Employee
You can always do a redirect to a page of your choice using an iRule. I would suggest to do it on the HTTP_RESPONSE event. You will need to look for the /vdesk/hangup.php3 page in the HTTP_REQUEST and set a flag for the response to send to a different page.
Hope this helps you get in the right direction.
Seth
- Seth_Cooper
Employee
Hi, Something like this might help you out.
when HTTP_REQUEST { if {[HTTP::uri] contains "/vdesk/hangup.php3" }{ set logoff 1 } else { set logoff 0 } } when HTTP_RESPONSE { if { $logoff == 1 }{ HTTP::redirect https://new.redirect.com } } - strain17
Nimbostratus
@dhreeves - were you able to solve this yet? As far as I know, you will need to first disable the "restrict irules events" in order for LTM to "see" the request to "/vdesk/hangup.php3".
See below
https://devcentral.f5.com/wiki/iRules.ACCESS__restrict_irule_events.ashx?lc=1
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com