使用 .htaccess 向每个请求添加标头

2022-08-30 17:07:29

我想在不接触代码的情况下将自定义标头添加到phpbb安装中。(使用 .htaccess)

标头为:

Strict-Transport-Security: max-age=157680000

有什么想法吗?


答案 1
Header add Strict-Transport-Security "max-age=157680000"

http://httpd.apache.org/docs/2.0/mod/mod_headers.html


答案 2

查看 http://httpd.apache.org/docs/2.0/mod/mod_headers.html

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

推荐