你如何删除元数据ServiceStack重定向?(How do you remove the met

2019-09-24 02:45发布

我已经通过的NuGet ServiceStack安装,我已经中调用setConfig增加了以下配置:

EnableFeatures = Feature.All.Remove(Feature.Metadata)

已经移除了/但是元数据的物理页面,每次我试着打根的时候,我仍然重定向到/元。 我看不到任何东西让我来处理这个官方页面上( https://github.com/ServiceStack/ServiceStack/wiki/Metadata-page ) -任何帮助,将不胜感激!

Answer 1:

您可以添加自己的default.html和/ .cshtml /等主页为你服务,也可以在指定DefaultRedirectPathMetadataRedirectPath在EndpointHostConfig 。



Answer 2:

    SetConfig(new EndpointHostConfig {
        EnableFeatures = Feature.All
                                   .Remove(Feature.Metadata)
                                 //.Remove(Feature.PredefinedRoutes)
                                 //.Add(Feature.ProtoBuf)
                                 //... and more
                                   ,
        DefaultRedirectPath = "/default", //set default|index|home
      //... and more
    }); 


文章来源: How do you remove the metadata redirect in ServiceStack?