SPWeb.Url 返回错误的 URL

发布于 2024-08-18 17:43:59 字数 247 浏览 4 评论 0原文

我在 SharePoint 中有一个 Web 应用程序,该应用程序已扩展到另一个区域(外联网)。默认域的访问地址为http://server1,外网域的访问地址为https://www.server1.com。

现在,当我通过 Extranet 区域访问该站点时,我发现 SPContext.Current.Web.Url 返回 http://server1。我本来期望 https://www.server1.com,因为这就是我访问该网站的方式。我做错了什么?

I have a web application in SharePoint that has been extended to another zone (Extranet). The access URL for the default zone is http ://server1, and the URL for the extranet zone is https: //www.server1.com.

Now, when I access the site via the extranet zone, I find that SPContext.Current.Web.Url returns http ://server1. I would have expected https ://www.server1.com, since that's how I'm accessing the site. What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

定格我的天空 2024-08-25 17:43:59

尝试使用:

SPContext.Current.Site.MakeFullUrl(SPContext.Current.Web.ServerRelativeUrl);

这应该考虑到您的访问映射。

Try using:

SPContext.Current.Site.MakeFullUrl(SPContext.Current.Web.ServerRelativeUrl);

That should take into account your access mappings.

删除会话 2024-08-25 17:43:59

奇怪...

作为替代方案,您是否尝试过使用 HttpContext.Current.Request.Url ?

Odd...

As an alternative, have you tried using HttpContext.Current.Request.Url ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文