gpt4 book ai didi

SharePoint 404 页面

转载 作者:行者123 更新时间:2023-12-03 22:29:24 29 4
gpt4 key购买 nike

最好的地方是在 web.config customError 部分中为 SharePoint 设置 404 错误页面,还是网站集/Web 应用程序上有配置设置?

最佳答案

请阅读 this blog

粘贴:

  • 在您的 MOSS 服务器中,复制
    %systemdrive%\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\TEMPLATE\LAYOUTS\1033\sps404.html
    并称之为 my404.html
  • 在 IIS 中的 MOSS 根 Web 应用程序下创建一个虚拟目录。例如/errors
  • 创建您自己的重定向 aspx 页面,例如/errors/my404redirect.aspx 并在其中编写您的重定向逻辑。这是一个普通的asp.net 页面。
  • 在 my404.html 中,进行以下更改:
    STSNavigate("/errors/my404redirect.aspx?oldUrl="+requestedUrl);
  • 创建一个控制台应用程序并插入以下代码并在 MOSS 服务器中运行它

    System.Uri webApplicationUri = new Uri( http://MyMOSSServer/);
    SPWebApplication webApplication = SPWebApplication.Lookup(webApplicationUri);
    webApplication.FileNotFoundPage = "my404.html";
    webApplication.Update();
  • 现在,当您浏览到一个不存在的页面时,您应该会被带到重定向的页面。
  • 关于SharePoint 404 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/502336/

    29 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com