One more question :) Can PB rewrite (not redirct this time ;) child portal homepage URLs to get rid of the "&alias=childportalname" query string param? I know that other rewriters (Ventrian if I recall correctly have problems with this) Thanks
OM
That is actually a side-effect in DNN because of a 302 redirect. You can rewrite those Urls using the core DNN SiteUrls.config.
I blogged about this here:
Use SiteUrls.config to clean up the DotNetNuke ChildPortal Url
Other option:
You can replace line:
Response.Redirect(DomainName,True);
to:
Server.Transfer(DomainName,True);
in your child portal directory's Default.aspx file