When a Muse session expires (times out)or after my user clicks “logoff” they should be redirected to my web site (or another a

The following must be done to achieve this functionality:

1. Search the $APPLICATION_HOME/www folder for files containing an HTML form called “logoffForm”.
2. In the files found at #1 add the following in the “logoffForm”: , where app_name is the name of the Application you’re working with.
3. In the $MUSE_HOME/web/www/logon folder create a folder “app_name”, if it doesn’t already exist, where app_name is the name of the Application you’re working with.
4. In the $MUSE_HOME/web/www/logon/app_name folder create a redirect.html file such as the example below:

<html>
<body onload="location.href='http://www.museglobal.com'">
</body>
</html>

Simply use the URL of the target page you want in place of "http://www.museglobal.com".