Author: amitranjan | Posted on: 6/5/2008 9:03:53 PM | Views : 822

Hi all,

The problem is that I want to redirect my homepage to a file that is placed under a subdirectory of root of webserver. Let me make it more clear. I have uploaded a blog on the root of my domain. Now I want to publish a small web on that domain under some subdirectory, say if my domain is www.abc.com then i want to publish it under www.abc.com/web/*.* . I want www.abc.com/web/index.html as my home page ,

For achieving that I made changes in web.config under

 <authentication mode="Forms">
      <forms timeout="129600" name=".AUXBLOGENGINE" protection="All" slidingExpiration="true" loginUrl="~/login.aspx" cookieless="UseCookies" defaultUrl="~/web/index.html" />
  & ...

Go to the complete details ...