If you really want your Pages to be in "Web Pages", add this Default.aspx to the root folder:
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
void Page_Load(object sender, EventArgs e)
{
Response.Redirect("Web Pages/Home.aspx");
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<a href="Web Pages/Home.aspx">Redirect</a>
</form>
</body>
</html>
EDIT: Sorry, my fault! My code gives 302 pace. Redirection. Thomas's code is 301.
source
share