MVC 中是否有办法在执行重定向操作后指定浏览器 url 地址?在我的代码中,我有
RedirectToAction("myaction", "mycontroller", new {arg1= "height", arg2="weight"})
浏览器中显示的地址是:
http/mywebsite/mycontroller/myaction?arg1=height&arg2=weight
但是,我希望出现在浏览器 url 中的是:
http://mywebsite/height/weight
有没有办法做到这一点?