ASP.Net MVC:如何将国家/地区代码添加到所有URL

时间:2016-07-16 19:44:58

标签: asp.net-mvc asp.net-mvc-routing url-rewrite-module

我有两个要求

第一个是:我的要求是将国家/地区代码添加到所有网址。在我的网址看起来像

之前
  

www.mysite.net/catalog.aspx

     

www.mysite.net/product.aspx

     

www.mysite.net/cart.aspx

但是现在我必须在全球范围内编写一些代码,它将在所有URL中注入2个char国家代码,只读取cookie值。所以我的新网址看起来像

  

www.mysite.net/uk/catalog.aspx

     

www.mysite.net/uk/product.aspx

     

www.mysite.net/uk/cart.aspx

请告诉我需要在网站的全球区域添加哪些代码,该代码在url中注入国家/地区代码。

第二个是:国家代码将被注入浏览器地址栏的网址,然后我所有页面中的所有链接应该具有相同的国家/地区代码。

如果可能,请使用代码示例和提示进行讨论。一个人告诉我下载并安装IIS URL重写模块,但我不知道IIS IIS URL重写模块如何从国家cookie中注入国家代码。我想我需要为此添加一些代码。

我可以通过asp.net mvc中的url路由解决它。寻求帮助。

感谢

1 个答案:

答案 0 :(得分:0)

这样我完成了这项工作。所以我想分享一下,这可能有助于他人。

我的Application_BeginRequest看起来像

 protected void Application_BeginRequest(Object sender, EventArgs e)
        {
            string CountryCodeInUrl = "", redirectUrl="";
            var countryCode = CookieSettings.ReadCookie();
            if (countryCode=="")
            {
                countryCode = "gb";
            }

            if (HttpContext.Current.Request.RawUrl.Length >= 2)
            {
                CountryCodeInUrl = HttpContext.Current.Request.RawUrl.Substring(1, 2);
            }

            if (countryCode != CountryCodeInUrl)
            {
                if (HttpContext.Current.Request.RawUrl.Length >= 2)
                {
                    if (HttpContext.Current.Request.RawUrl.Substring(1, 2) != "")
                    {
                        countryCode = HttpContext.Current.Request.RawUrl.Substring(1, 2);
                    }
                }

                if(!System.Web.HttpContext.Current.Request.RawUrl.Contains(countryCode))
                {
                    redirectUrl = string.Format("/{0}{1}", countryCode, System.Web.HttpContext.Current.Request.RawUrl);
                }
                else
                {
                    redirectUrl = System.Web.HttpContext.Current.Request.RawUrl;
                }
                CookieSettings.SaveCookie(countryCode);
                System.Web.HttpContext.Current.Response.RedirectPermanent(redirectUrl);
            }

        }

CookieSettings类

public class CookieSettings
    {
        public static void SaveCookie(string data)
        {
            var _CookieValue= new HttpCookie("CountryCookie");
            _CookieValue.Value = data;
            _CookieValue.Expires = DateTime.Now.AddDays(300);
            HttpContext.Current.Response.Cookies.Add(_CookieValue);
        }

        public static string ReadCookie()
        {
            var _CookieValue = "";
            if (HttpContext.Current.Request.Cookies["CountryCookie"] != null)
                _CookieValue= HttpContext.Current.Request.Cookies["CountryCookie"].Value;
            return _CookieValue;
        }
    }

例程配置看起来像

public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

            routes.MapRoute(
                name: "DefaultCountry",
                url: "{countrycode}/{controller}/{action}/{id}",
                defaults: new {countrycode="gb", controller = "Home", action = "Index", id = UrlParameter.Optional }
            );

            routes.MapRoute(
                name: "Default",
                url: "{controller}/{action}/{id}",
                defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
            );
        }

家庭控制器索引操作看起来像

public ActionResult Index(string countrycode)
{
    return View();
}

这个问题结束了。