contact中的URL更改为

contact中的URL更改为

本文介绍了如何将/ home / contact中的URL更改为/ contact的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何更改路由,而不是/ home / contact页面将打开/ contact。现在,当我点击联系localhost:3212 / home /联系似乎我希望这是localhost:3212 /联系。



我试过的:



routes.MapRoute(

名称:联系方式,

url: {action} / {id},

默认值:new {Controller =Home,action =Contact,id = UrlParameter.Optional}

);

解决方案

How can i change the routing in the way that rather than /home/contact page will open at /contact. Right now when i click "Contact" localhost:3212/home/Contact appears i want this to be localhost:3212/Contact.

What I have tried:

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

解决方案


这篇关于如何将/ home / contact中的URL更改为/ contact的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 19:55