This has been discussed previously at length and also included discussion regarding the changing
of the AwareIM folder name so that your app URL instead of being...
http://mydomain.com/AwareIM/myapp.html
becomes...
http://mydomain.com/app/myapp.html (or whatever you want "app" to be)
Not sure if anyone suggested this before and dont really have the time to look but thought I might share the following.
Create a Landing Page (not to be confused with your Aware IM Login page) such as
http://mydomain.com/index,html
In the <HEAD> add
<HEAD>
<META NAME="description" CONTENT="mydomain.com">
</HEAD>
After the Head add
<FRAMESET border=0 rows="100%,*" frameborder="no" marginleft=0 margintop=0 marginright=0 marginbottom=0>
<frame src="http://mydomain.com/AwareIM/myapp.html" scrolling=auto frameborder="no" border=0 noresize>
<frame topmargin="0" marginwidth=0 scrolling=no marginheight=0 frameborder="no" border=0 noresize>
</FRAMESET>
While this does not obscure the url from someone who wants to Inspect the page from the browser....It does allow you to only have...
http://mydomain.com in the address bar which works well for me.
Hope this helps.