You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
313 B
8 lines
313 B
<?php
|
|
header('Content-type: text/html; charset=UTF-8');
|
|
header("Content-Security-Policy: default-src 'self';");
|
|
header("X-Frame-Options: deny");
|
|
header("X-Content-Type-Options: nosniff");
|
|
header("X-XSS-Protection: 1; mode=block");
|
|
header("Strict-Transport-Security: max-age=259200; includeSubDomains; preload;");
|