You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[Exception Handler](xref:fundamentals/error-handling-api?view=aspnetcore-6.0)| Globally handles exceptions thrown by the middleware pipeline. |<xref:Microsoft.AspNetCore.Builder.ExceptionHandlerExtensions.UseExceptionHandler%2A>|
50
-
|[Forwarded Headers](xref:fundamentals/middleware/index?view=aspnetcore-6.0#forwarded-headers-middleware-order)| Forwards proxied headers onto the current request. |<xref:Microsoft.AspNetCore.Builder.ForwardedHeadersExtensions.UseForwardedHeaders%2A>|
51
-
|[HTTPS Redirection](xref:security/enforcing-ssl?view=aspnetcore-6.0)| Redirects all HTTP requests to HTTPS. |<xref:Microsoft.AspNetCore.Builder.HttpsPolicyBuilderExtensions.UseHttpsRedirection%2A>|
52
-
|[HTTP Strict Transport Security (HSTS)](xref:fundamentals/middleware/index?view=aspnetcore-6.0#middleware-order)| Security enhancement middleware that adds a special response header. |<xref:Microsoft.AspNetCore.Builder.HstsBuilderExtensions.UseHsts%2A>|
53
-
|[Request Logging](xref:fundamentals/logging/index?view=aspnetcore-6.0)| Provides support for logging HTTP requests and responses. |<xref:Microsoft.AspNetCore.Builder.HttpLoggingBuilderExtensions.UseHttpLogging%2A>|
|[Exception Handler](xref:fundamentals/error-handling-api)| Globally handles exceptions thrown by the middleware pipeline. |<xref:Microsoft.AspNetCore.Builder.ExceptionHandlerExtensions.UseExceptionHandler%2A>|
50
+
|[Forwarded Headers](xref:fundamentals/middleware/index#forwarded-headers-middleware-order)| Forwards proxied headers onto the current request. |<xref:Microsoft.AspNetCore.Builder.ForwardedHeadersExtensions.UseForwardedHeaders%2A>|
51
+
|[HTTPS Redirection](xref:security/enforcing-ssl)| Redirects all HTTP requests to HTTPS. |<xref:Microsoft.AspNetCore.Builder.HttpsPolicyBuilderExtensions.UseHttpsRedirection%2A>|
52
+
|[HTTP Strict Transport Security (HSTS)](xref:fundamentals/middleware/index#middleware-order)| Security enhancement middleware that adds a special response header. |<xref:Microsoft.AspNetCore.Builder.HstsBuilderExtensions.UseHsts%2A>|
53
+
|[Request Logging](xref:fundamentals/logging/index)| Provides support for logging HTTP requests and responses. |<xref:Microsoft.AspNetCore.Builder.HttpLoggingBuilderExtensions.UseHttpLogging%2A>|
54
54
|[Request Timeouts](xref:performance/timeouts)| Provides support for configuring request timeouts, global default and per endpoint. |`UseRequestTimeouts`|
55
55
|[W3C Request Logging](https://www.w3.org/TR/WD-logfile.html)| Provides support for logging HTTP requests and responses in the [W3C format](https://www.w3.org/TR/WD-logfile.html). |<xref:Microsoft.AspNetCore.Builder.HttpLoggingBuilderExtensions.UseW3CLogging%2A>|
56
56
|[Response Caching](xref:performance/caching/middleware)| Provides support for caching responses. |<xref:Microsoft.AspNetCore.Builder.ResponseCachingExtensions.UseResponseCaching%2A>|
@@ -301,14 +301,14 @@ allows unauthenticated users to access endpoints:
301
301
302
302
## CORS
303
303
304
-
Routes can be [CORS](xref:security/cors?view=aspnetcore-6.0) enabled using [CORS policies](xref:security/cors?view=aspnetcore-6.0#cors-policy-options). CORS can be declared via the [`[EnableCors]`](xref:Microsoft.AspNetCore.Cors.EnableCorsAttribute) attribute or by using the
304
+
Routes can be [CORS](xref:security/cors) enabled using [CORS policies](xref:security/cors#cors-policy-options). CORS can be declared via the [`[EnableCors]`](xref:Microsoft.AspNetCore.Cors.EnableCorsAttribute) attribute or by using the
305
305
<xref:Microsoft.AspNetCore.Builder.CorsEndpointConventionBuilderExtensions.RequireCors%2A> method. The following samples enable CORS:
0 commit comments