> Hi, > > What can I do to retain the URL in the browser. I > would like it to stay: > > https://mail.domain.tld > > and not: > > https://mail.domain.tld/mail/src/webmail.php > > This way the users always bookmark the correct URL and > it looks more proffesional.
----------------------- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"> <html><head> <title>Webmail</title> </head><frameset rows="20, *" id="topfs1"> <frame src="top.php" name="top_top" frameborder="0" /> <frame src="src/login.php" name="top_bottom" frameborder="0" /> </frameset> </html> ----------------------- replace 'src="top.php"' with your own banner adjust 'rows="20, *"' set top frame to 'top_bottom' in squirrelmail config. you might also add some tests and set bottom frame to src/webmail.php in case user is already logged. add noframes part, if you want to support other browsers. -- Tomas ------------------------------------------------------- The SF.Net email is sponsored by: Beat the post-holiday blues Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek. It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt -- squirrelmail-users mailing list Posting Guidelines: http://squirrelmail.org/wiki/wiki.php?MailingListPostingGuidelines List Address: [email protected] List Archives: http://news.gmane.org/thread.php?group=gmane.mail.squirrelmail.user List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
