<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>DotNetNuke</title><link>http://www.dotnetnuke.com/tabid/795/Default.aspx</link><description>Discussions of DotNetNuke for ASP.NET 1.x and above.  &lt;a href="http://www.dotnetnuke.com/" target="_blank"&gt;DNN Home&lt;/a&gt; &lt;a href="http://aspadvice.com/SignUp/list.aspx?l=105&amp;c=25" target="_blank"&gt;Email List&lt;/a&gt;</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: How can you avoid displaying the portal alias in query string when accessing child portal?</title><link>http://forums.asp.net/thread/1081182.aspx</link><pubDate>Thu, 13 Oct 2005 01:10:18 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1081182</guid><dc:creator>ikamiksok</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1081182.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1081182</wfw:commentRss><description>&lt;BLOCKQUOTE&gt;&lt;table width="85%"&gt;&lt;tr&gt;&lt;td class="txt4"&gt;&lt;img src="/Themes/default/images/icon-quote.gif"&gt;&amp;nbsp;&lt;strong&gt;J7Mitch wrote:&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="quoteTable"&gt;&lt;table width="100%"&gt;&lt;tr&gt;&lt;td width="100%" valign="top" class="txt4"&gt;&lt;BR&gt;If you have several and can handle the re-direct with a tabid, then&amp;nbsp;a better approach is to just make your child portal default page redirect to that tabid and take&amp;nbsp;all the other processing out of the child's default.aspx page like&amp;nbsp;I mentioned earlier.&lt;BR&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/BLOCKQUOTE&gt;&lt;BR&gt;&lt;BR&gt;Oooh. Good idea. Thanks a bunch!&lt;BR&gt;&lt;BR&gt;Jason</description></item><item><title>Re: How can you avoid displaying the portal alias in query string when accessing child portal?</title><link>http://forums.asp.net/thread/1080087.aspx</link><pubDate>Wed, 12 Oct 2005 04:28:50 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1080087</guid><dc:creator>J7Mitch</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1080087.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1080087</wfw:commentRss><description>BTW, you could also make a rule like this and get the same result:&lt;BR&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;RewriterRule&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;LookFor&amp;gt;.*/child1/default.aspx&amp;lt;/LookFor&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;SendTo&amp;gt;~/Default.aspx?alias=www.snapsis.com/child1&amp;lt;/SendTo&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;/RewriterRule&amp;gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;I wouldn't recommend this approach for lots of child portals, because you are adding overhead to every request (in every portal) for every rewrite rule that you add.&lt;BR&gt;&lt;BR&gt;If you have several and can handle the re-direct with a tabid, then&amp;nbsp;a better approach is to just make your child portal default page redirect to that tabid and take&amp;nbsp;all the other processing out of the child's default.aspx page like&amp;nbsp;I mentioned earlier.&lt;BR&gt;</description></item><item><title>Re: How can you avoid displaying the portal alias in query string when accessing child portal?</title><link>http://forums.asp.net/thread/1080084.aspx</link><pubDate>Wed, 12 Oct 2005 04:19:41 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1080084</guid><dc:creator>J7Mitch</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1080084.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1080084</wfw:commentRss><description>Ok, here is a way to make it work with SiteUrls.config without making any core changes.&lt;BR&gt;&lt;BR&gt;First, figure out what the tabid is for the home page for the child portal, on mine it was tabid=508, then&amp;nbsp;add a rule to SiteUrls.config like this:&lt;BR&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;RewriterRule&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;LookFor&amp;gt;.*/&lt;STRONG&gt;child1&lt;/STRONG&gt;/default.aspx&amp;lt;/LookFor&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;SendTo&amp;gt;~/Default.aspx?TabId=&lt;STRONG&gt;508&lt;/STRONG&gt;&amp;lt;/SendTo&amp;gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;lt;/RewriterRule&amp;gt;&lt;BR&gt;&lt;BR&gt;Where child1 is the name of your child portal.&lt;BR&gt;&lt;BR&gt;You have to leave the child folder and the default page there, because IIS needs to find that before it will call up the web app, otherwise you'll get a 404 page not found.&lt;BR&gt;&lt;BR&gt;This keeps your Url nice and clean and you even save the redirect.&lt;BR&gt;</description></item><item><title>Re: How can you avoid displaying the portal alias in query string when accessing child portal?</title><link>http://forums.asp.net/thread/1079595.aspx</link><pubDate>Tue, 11 Oct 2005 18:08:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1079595</guid><dc:creator>ikamiksok</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1079595.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1079595</wfw:commentRss><description>&lt;BLOCKQUOTE&gt;&lt;table width="85%"&gt;&lt;tr&gt;&lt;td class="txt4"&gt;&lt;img src="/Themes/default/images/icon-quote.gif"&gt;&amp;nbsp;&lt;strong&gt;J7Mitch wrote:&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="quoteTable"&gt;&lt;table width="100%"&gt;&lt;tr&gt;&lt;td width="100%" valign="top" class="txt4"&gt;&lt;BR&gt;Come to think of it, this may be something we could implement in the core so that child portals could be accessed without having to have the child folder and the default page that just does a redirect.&amp;nbsp; I'll look into this.&lt;BR&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/BLOCKQUOTE&gt;&lt;BR&gt;&lt;BR&gt;I tried the siteurls without any luck. But I am not good at regex and may not have been doing it correctly. I can give it a shot again. I suppose the idea would be in siteurls to replace&lt;BR&gt;&lt;FONT color=#0000ff&gt;domain/childname/default.aspx?alias=domain/childname&lt;/FONT&gt; with &lt;FONT color=#0000ff&gt;domain/childname/&lt;BR&gt;&lt;/FONT&gt;&lt;BR&gt;I like the idea of using siteurls instead of the child folders if that was possible.&lt;BR&gt;&lt;BR&gt;I keep bringing this up because not only can it be an annoyance for those who have child portals but it probably hurts SEO to have url redirects on your main child page. Hopefully, a good solution can be found and added to the core in the future. I am patient.&lt;BR&gt;&lt;BR&gt;Thanks for the response.&lt;BR&gt;&lt;BR&gt;Jason</description></item><item><title>Re: How can you avoid displaying the portal alias in query string when accessing child portal?</title><link>http://forums.asp.net/thread/1079346.aspx</link><pubDate>Tue, 11 Oct 2005 14:39:36 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1079346</guid><dc:creator>J7Mitch</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1079346.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1079346</wfw:commentRss><description>I would be leery of&amp;nbsp;running from the default.aspx from the child folder&amp;nbsp;because the whole system expects the root of the application to be where the main Default.aspx page is.&lt;BR&gt;You might find obscure bugs crop up at other times, and some modules may not work as expected, plus you will have to copy all of the /js files for every child portal you create.&lt;BR&gt;&lt;BR&gt;If getting the child&amp;nbsp;home page to&amp;nbsp;show up without having anything in the querystring is the goal, I bet it could be done with the SiteUrls.config file.&lt;BR&gt;&lt;BR&gt;What you would do is add a rule to the file that would look for your child folder on the Url, and make it rewrite it to include the home page tabid for that child.&lt;BR&gt;&lt;BR&gt;Come to think of it, this may be something we could implement in the core so that child portals could be accessed without having to have the child folder and the default page that just does a redirect.&amp;nbsp; I'll look into this.&lt;BR&gt;&lt;BR&gt;</description></item><item><title>Re: How can you avoid displaying the portal alias in query string when accessing child portal?</title><link>http://forums.asp.net/thread/1078942.aspx</link><pubDate>Tue, 11 Oct 2005 06:22:08 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1078942</guid><dc:creator>ikamiksok</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1078942.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1078942</wfw:commentRss><description>&lt;P&gt;OK. Thanks for everyone's advice so far. After further investigation, I finally found a solution that works and does not append anything to the end. Does this sound ok....&lt;/P&gt;
&lt;P&gt;I simply copied the default.aspx in DNN root to my portal subdirectory. This works and loads my portal. However, it loads it without the js files so it has javascript errors. This is because it is looking for them in domainname/child/js instead of domainname/js. &lt;BR&gt;&lt;BR&gt;So I copied the js directory over as well to my child directory and it loads error free. I think I may look for a solution to hardcode my js directory or somehow get my child portal to know to look at domainname/js.&lt;BR&gt;&lt;BR&gt;Am I missing anything else here other than the js problem? This seems like a rather simple hack fix.&lt;BR&gt;&lt;BR&gt;Jason&lt;/P&gt;</description></item><item><title>Re: How can you avoid displaying the portal alias in query string when accessing child portal?</title><link>http://forums.asp.net/thread/1073091.aspx</link><pubDate>Wed, 05 Oct 2005 20:26:51 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1073091</guid><dc:creator>J7Mitch</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1073091.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1073091</wfw:commentRss><description>&lt;P&gt;in the child's default.aspx page change&lt;/P&gt;
&lt;P&gt;DomainName = ServerPath &amp;amp; "Default.aspx?alias=" &amp;amp; DomainName&lt;BR&gt;&lt;BR&gt;To &lt;BR&gt;DomainName = ServerPath &amp;amp; "Default.aspx?portalId=nn"&amp;nbsp; ( where nn = your child's portalid)&lt;BR&gt;&lt;BR&gt;you can also remove the code that pulls the alias off of the url&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' parse the Request URL into a Domain Name token &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; URL = Split(Request.Url.ToString(), "/")&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; For intURL = 2 To URL.GetUpperBound(0)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Select Case URL(intURL).ToLower&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Case "admin", "desktopmodules", "mobilemodules", "premiummodules"&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exit For&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Case Else&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' check if filename&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If InStr(1, URL(intURL), ".aspx") = 0 Then&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DomainName = DomainName &amp;amp; IIf(DomainName &amp;lt;&amp;gt; "", "/", "") &amp;amp; URL(intURL)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Else&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Exit For&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Select&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Next intURL&lt;/P&gt;</description></item><item><title>Re: How can you avoid displaying the portal alias in query string when accessing child portal?</title><link>http://forums.asp.net/thread/1072997.aspx</link><pubDate>Wed, 05 Oct 2005 19:15:18 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1072997</guid><dc:creator>ikamiksok</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1072997.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=1072997</wfw:commentRss><description>&lt;BLOCKQUOTE&gt;&lt;table width="85%"&gt;&lt;tr&gt;&lt;td class="txt4"&gt;&lt;img src="/Themes/default/images/icon-quote.gif"&gt;&amp;nbsp;&lt;strong&gt;J7Mitch wrote:&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="quoteTable"&gt;&lt;table width="100%"&gt;&lt;tr&gt;&lt;td width="100%" valign="top" class="txt4"&gt;Also, if you know the tab or portalid for the home page you could change the default.aspx page in the childs folder to use that to identify the child portal instead of alias on the querystring.&lt;BR&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/BLOCKQUOTE&gt;&lt;BR&gt;&lt;BR&gt;OK. I am ready to look into this again and was wondering what I could actually do here to each default.aspx page to get this to work? Assuming that I do know the portalID for that default.aspx file for the child portal alias. &lt;BR&gt;&lt;BR&gt;I did also read somewhere I thought that it used to not add the portal alias&amp;nbsp;to the query string at the end&amp;nbsp;in prior DNN versions but they readded it as a fix for a viewstate problem.&lt;BR&gt;&lt;BR&gt;Jason</description></item><item><title>Re: How can you avoid displaying the portal alias in query string when accessing child portal?</title><link>http://forums.asp.net/thread/985419.aspx</link><pubDate>Tue, 12 Jul 2005 17:03:36 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:985419</guid><dc:creator>ikamiksok</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/985419.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=985419</wfw:commentRss><description>OK. Thanks. I was able to look into this further and understand how it works. Unfortunately, no easy fix that I could find I don't think. To confirm, my search engines do all display my child page links as parent.com/child1/default.aspx?alias=parent/com/child1. As they display the final URL string that the page finally redirects itself to to rather than the URL that points to the page.&lt;BR&gt;&lt;BR&gt;I suppose I could wait for a friendly URL module to be released that support seo &amp;amp; human friendly URLs. Then maybe parent.com/child1/home.aspx would work. But I am unsure of how it would handle different portals.&lt;BR&gt;&lt;BR&gt;One thing I was thinking about was if the portalalias could be stored in a session variable rather than passed in as a query string?&lt;BR&gt;&lt;BR&gt;Jason</description></item><item><title>Re: How can you avoid displaying the portal alias in query string when accessing child portal?</title><link>http://forums.asp.net/thread/981282.aspx</link><pubDate>Thu, 07 Jul 2005 21:29:48 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:981282</guid><dc:creator>J7Mitch</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/981282.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=981282</wfw:commentRss><description>Also, if you know the tab or portalid for the home page you could change the default.aspx page in the childs folder to use that to identify the child portal instead of alias on the querystring.&lt;BR&gt;</description></item><item><title>Re: How can you avoid displaying the portal alias in query string when accessing child portal?</title><link>http://forums.asp.net/thread/981211.aspx</link><pubDate>Thu, 07 Jul 2005 20:29:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:981211</guid><dc:creator>brian_c</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/981211.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=981211</wfw:commentRss><description>are you getting that url when you first click on a child portal from your portal listing ...??&lt;BR&gt;&lt;BR&gt;how would search engines get that?&amp;nbsp;&amp;nbsp; or is this dnn2.x?&lt;BR&gt;&lt;BR&gt;</description></item><item><title>Re: How can you avoid displaying the portal alias in query string when accessing child portal?</title><link>http://forums.asp.net/thread/981182.aspx</link><pubDate>Thu, 07 Jul 2005 20:10:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:981182</guid><dc:creator>J7Mitch</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/981182.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=981182</wfw:commentRss><description>One way is to make it a parent portal instead of a child.&lt;BR&gt;&lt;BR&gt;Instead of &lt;A href="http://www.myportal.com/child"&gt;www.myportal.com/child&lt;/A&gt;&amp;nbsp;&amp;nbsp; you could point another host at your website with DNS called&amp;nbsp;&amp;nbsp; child1&lt;BR&gt;Then add child1.myportal.com as an alais for that portal.</description></item><item><title>Re: How can you avoid displaying the portal alias in query string when accessing child portal?</title><link>http://forums.asp.net/thread/981139.aspx</link><pubDate>Thu, 07 Jul 2005 19:43:47 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:981139</guid><dc:creator>ikamiksok</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/981139.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=981139</wfw:commentRss><description>Anyone? I have not found a solution to this yet. Is this possible to fix?</description></item><item><title>How can you avoid displaying the portal alias in query string when accessing child portal?</title><link>http://forums.asp.net/thread/975693.aspx</link><pubDate>Fri, 01 Jul 2005 21:14:59 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:975693</guid><dc:creator>ikamiksok</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/975693.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=975693</wfw:commentRss><description>When I access my main site, it loads with a standard url:&lt;BR&gt;www mysite com&lt;BR&gt;&lt;BR&gt;When I access my child site, it does the following:&lt;BR&gt;www mysite com/child1/default.aspx?alias=www mysite com/child1&lt;BR&gt;&lt;BR&gt;When I do searches on my site, search engines all return this url which looks bad.&amp;nbsp;I am assuming this is needed upon first load so that&amp;nbsp;DNN knows which portal alias to use and portal to load. &lt;BR&gt;&lt;BR&gt;Is there a way to avoid this? I was thinking that you could use&amp;nbsp;the URL rewriter. Would the SiteUrls.config work &lt;A HREF="/888126/ShowPost.aspx"&gt;&lt;FONT color=#246398&gt;(http://forums.asp.net/888126/ShowPost.aspx&lt;/FONT&gt;&lt;/A&gt;)? Could I add rules such as: &lt;FONT color=#000080&gt;replace&lt;/FONT&gt; &lt;FONT color=#000000&gt;"?alias=www mysite com/child1"&lt;/FONT&gt; &lt;FONT color=#000080&gt;with&lt;/FONT&gt; "" &lt;BR&gt;&lt;BR&gt;Thanks,&lt;A href="http://yapclub.com/Default.aspx?alias=yapclub.com/austin"&gt;&lt;BR&gt;&lt;/A&gt;Jason</description></item></channel></rss>