I want to add a custom header to a phpbb installation without touching the code. (Using .htaccess)
The header is: Strict-Transport-Security: max-age=157680000
Any ideas?
I want to add a custom header to a phpbb installation without touching the code. (Using .htaccess)
The header is: Strict-Transport-Security: max-age=157680000
Any ideas?
see http://httpd.apache.org/docs/2.0/mod/mod%5Fheaders.html
Header add Strict-Transport-Security "max-age=157680000"
I've implemented this on my website. See ClickJacking and SSL Protection in Apache for details on how I did it.