I need to redirect the user to my blog which is in ../blog
When the user types in www.website.com it should load the blog which is in www.website.com/blog
I have a default.aspx page in the root which i no longer use and I have tried added a web.config file in the root with the following to redirect the user to the blog but its not working:
<configuration>
<location path="blog/default.aspx">
<system.webServer>
<httpRedirect enabled="true" destination="http://www.website.com/blog/Default.aspx" httpResponseStatus="Permanent" />
</system.webServer>
</location>
</configuration>
What would be the fastest way to redirect the user, I thought about getting rid of my own redundant default.aspx page and creating a new page and using JavaScript to redirect. But which method is the easiest and fastest?