我们计划将我们的 asp .net mvc 应用程序转移到带有负载平衡器的 webfarm,
我担心应用程序中可用的许多硬编码网址,例如。
<a href="https://root:xxx/home/index">Index</a>
和
this.RedirectToAction(x=>x.Index());
和
Response.Redirect("~/home/index");
是否需要根据 RRA 算法动态构建此 url 以重定向到某个特定位置。
我们计划将我们的 asp .net mvc 应用程序转移到带有负载平衡器的 webfarm,
我担心应用程序中可用的许多硬编码网址,例如。
<a href="https://root:xxx/home/index">Index</a>
和
this.RedirectToAction(x=>x.Index());
和
Response.Redirect("~/home/index");
是否需要根据 RRA 算法动态构建此 url 以重定向到某个特定位置。