匹配单个特定 url 的自定义路由
Custom route that match a single specific url
在我的 mvc 应用程序中,我想动态生成一个特定的 url :
https://myapp.corp.com/.well-known/microsoft-identity-association.json
此端点应根据 web.config 文件中的值生成一个小文件。所以我创建了这个控制器:
public class HostingController : Controller
{
// GET: Hosting
[OutputCache(Duration = 100, VaryByParam = "none")]
public ActionResult MicrosoftIdentityAssociation() => Json(new
{
associatedApplications = new[]
{
new { applicationId = WebConfigurationManager.AppSettings.Get("ClientId") }
}
});
}
然后我像这样更改了路由配置:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Azure domain registration",
".well-known/microsoft-identity-association.json",
new { controller = "Hosting", action= "MicrosoftIdentityAssociation" }
);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
我希望 url 产生 json 像 :
{
"associatedApplications": [
{
"applicationId": "1562019d-44f7-4a9d-9833-64333f52181d"
}
]
}
但是当我定位 url 时,出现了 404 错误。
怎么了?如何修复?
您可以使用路由属性:
[Route("~/.well-known/microsoft-identity-association.json")]
[OutputCache(Duration = 100, VaryByParam = "none")]
public ActionResult MicrosoftIdentityAssociation()
{
..... your code
}
已在邮递员中测试。
Asp.Net MVC 无法创建具有扩展名的路由。我不得不编辑 Web.config 以将 MVC 框架插入到这个非常具体的文件中。
具体来说:
<system.webServer>
<handlers>
<add name="Azure domain verifier"
path=".well-known/microsoft-identity-association.json"
verb="GET" type="System.Web.Handlers.TransferRequestHandler"
preCondition="integratedMode,runtimeVersionv4.0" responseBufferLimit="0"
/>
</handlers>
</system.webServer>
从这一点开始,我可以使用 routeconfig.cs 文件或 [RouteAttribute]
路由到我的自定义控制器操作
在我的 mvc 应用程序中,我想动态生成一个特定的 url :
https://myapp.corp.com/.well-known/microsoft-identity-association.json
此端点应根据 web.config 文件中的值生成一个小文件。所以我创建了这个控制器:
public class HostingController : Controller
{
// GET: Hosting
[OutputCache(Duration = 100, VaryByParam = "none")]
public ActionResult MicrosoftIdentityAssociation() => Json(new
{
associatedApplications = new[]
{
new { applicationId = WebConfigurationManager.AppSettings.Get("ClientId") }
}
});
}
然后我像这样更改了路由配置:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Azure domain registration",
".well-known/microsoft-identity-association.json",
new { controller = "Hosting", action= "MicrosoftIdentityAssociation" }
);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
我希望 url 产生 json 像 :
{
"associatedApplications": [
{
"applicationId": "1562019d-44f7-4a9d-9833-64333f52181d"
}
]
}
但是当我定位 url 时,出现了 404 错误。
怎么了?如何修复?
您可以使用路由属性:
[Route("~/.well-known/microsoft-identity-association.json")]
[OutputCache(Duration = 100, VaryByParam = "none")]
public ActionResult MicrosoftIdentityAssociation()
{
..... your code
}
已在邮递员中测试。
Asp.Net MVC 无法创建具有扩展名的路由。我不得不编辑 Web.config 以将 MVC 框架插入到这个非常具体的文件中。
具体来说:
<system.webServer>
<handlers>
<add name="Azure domain verifier"
path=".well-known/microsoft-identity-association.json"
verb="GET" type="System.Web.Handlers.TransferRequestHandler"
preCondition="integratedMode,runtimeVersionv4.0" responseBufferLimit="0"
/>
</handlers>
</system.webServer>
从这一点开始,我可以使用 routeconfig.cs 文件或 [RouteAttribute]
路由到我的自定义控制器操作