PDA

View Full Version : Default home page to dotnetnuke 4.X


jameswongkb
08-28-2006, 02:08 AM
I just subscribe to discountasp.net and would like to start my new dotnetnuke (DNN) website asap. Before I install the DNN 4.X, I read the instruction in the KB and it suggests that DNN files should be uploaded to a sub-directory under the root one. Therefore, the portal URL will become http://www.abc.com/dnn but NOT http://www.abc.com.

How can I configure via the my.discountasp.net that default website http://www.abc.com will redirect to DNN portal website automatically. It is indeed very inconvenient to remember URL like http://www.dnn.com/dnn ... and all other links with DNN embedded ... how can I hide the DNN in the URL ?

bruce
08-28-2006, 09:21 AM
The simplest way to do this is to put a redirect file in your site root.

Create a page with the following content and name it index.aspx

<%
Response.Redirect("/dnn")
%>

Bruce

DiscountASP.NET
www.DiscountASP.NET (http://www.DiscountASP.NET)

jameswongkb
08-29-2006, 12:41 AM
yes thks !