Starup.cs
Код: Выделить всё
app.UseRouting(); //Added for 3.0
app.UseSession();
app.UseAuthentication();
app.UseCookiePolicy();
//Removed 2.2
//app.UseMvc(routes =>
//{
// routes.MapRoute(
// name: "default",
// template: "{controller=Home}/{action=Index}/{id?}");
//});
//Added for 3.0
app.UseEndpoints(endpoints => endpoints.MapRazorPages());
app.UseEndpoints(endpoints => endpoints.MapControllerRoute(
name: "default", pattern: "{controller=Home}/{action=Index}/{id?}"));
В версии 3.0 я вижу экран входа в систему как если бы я набрал https://{mydomainname}
Подробнее здесь: https://stackoverflow.com/questions/790 ... ot-working
Мобильная версия