1

我有一个在 IIS 6.0 上设置的应用程序。我们在使用 default.aspx 页面进行搜索引擎优化时遇到问题。例如,当我键入 www.xxxxxx.com/default.aspx 时,它应该重定向到 www.xxxxxx.com。

谁能帮我解决这个问题?

4

2 回答 2

1
  public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                if (HttpContext.Current.Request.RawUrl == "/default.aspx")
                {
                    Response.StatusCode = 301;
                    Response.Status = "301 Moved Permanently";
                    Response.RedirectLocation = "/";
                    Response.End();
                }
            }
         }
     }
于 2011-09-27T20:42:03.003 回答
0

在 IIS 中的 Documents 选项卡下设置默认文档。进入“文档”选项卡后,选中“启用默认内容页面”并将 Default.aspx 设置为列表中的第一项(或唯一一项)。

于 2011-09-27T20:34:06.153 回答