Request.Url 拆解

Url 相關

公司很多同網域專案,常常會因為上到的環境不同

所以以往都必須在Web.config去設定

但其實...它們可以不用那麼辛苦....

它們只要好好的利用Request.Url的屬性就好啦...

例如:https://dotblogs.com.tw/aa/bb

Request.Url.Scheme = "http";

Request.Url.Authority = "dotblogs.com.tw";

Request.Url.LocalPath = "aa/bb";

當然還有最後的....

Request.Url = "https://dotblogs.com.tw/aa/bb";

更多詳請請參考保哥的ASP.NET 如何取得 Request URL 的各個部分

We all change, when you think about it, we're all different people; all through our lives, and that's okay, that's good, you've gotta keep moving, so long as you remember all the people that you used to be. I will not forget one line of this, not one day, I swear.