gpt4 book ai didi

c# - HttpContext.Current.Request.Url.Host 它返回什么?

转载 作者:IT王子 更新时间:2023-10-29 04:09:10 30 4
gpt4 key购买 nike

我有一个具有路径的本地应用程序:

http://localhost:950/m/pages/Searchresults.aspx?search=knife&filter=kitchen

但是当这进入集成环境或者可能是生产时,它会是这样的

http://www.someshopping.com/m/pages/SearchResults.aspx?search=knife&filter=kitchen

对于某些情况,我只需要通过:

www.someshopping.com

到我的 XSLT 文件和我正在使用的函数之一:

string currentURL = HttpContext.Current.Request.Url.Host;

这会在本地环境中返回“localhost”。相同的代码会返回我吗:

www.someshopping.com 在生产中(我不需要 http://)

只是不想冒险。所以问了这个愚蠢的问题。

最佳答案

是的,只要您在浏览器中输入网址 www.someshopping.com 并且您没有使用网址重写即可

string currentURL = HttpContext.Current.Request.Url.Host;

将返回 www.someshopping.com

注意本地调试环境和生产环境的区别

关于c# - HttpContext.Current.Request.Url.Host 它返回什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13273312/

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