How do I create a simple redirect in the root folder

Discussion in 'ASP.NET Starter Kits' started by Cedric, Nov 24, 2006.

  1. Hello Folks,

    I have installed Community Starterkit and I can only access it from this Address:


    http://peopleparliament.net/community. How do I create a simple redirect script inmy website root to redirect the page to the community folder so that I can access it my typing my URL: www.peopleparliament.net.


    Regards
     
  2. Bruce

    Bruce DiscountASP.NET Staff

    Use notepad or any editor, create a page with the following content

    <%

    response.redirect ("/community")

    %>

    save it as index.asp into your website root.

    Bruce

    DiscountASP.NET
    www.DiscountASP.NET
     

Share This Page