📜  hsts wordpress - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:28.146000             🧑  作者: Mango

代码示例1
/** 
 * Enables the HTTP Strict Transport Security (HSTS) header in WordPress. 
 */
function tg_enable_strict_transport_security_hsts_header_wordpress() {
    header( 'Strict-Transport-Security: max-age=10886400' );
}
add_action( 'send_headers', 'tg_enable_strict_transport_security_hsts_header_wordpress' );