tags:

views:

91

answers:

3

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?

+3  A: 

Header add Strict-Transport-Security "max-age=157680000"

http://httpd.apache.org/docs/2.0/mod/mod%5Fheaders.html

steven
+1  A: 

see http://httpd.apache.org/docs/2.0/mod/mod%5Fheaders.html

Header add Strict-Transport-Security "max-age=157680000"
Lance Rushing
A: 

I've implemented this on my website. See ClickJacking and SSL Protection in Apache for details on how I did it.

Mike