php 使用 .htaccess 为每个请求添加一个标头
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/1570673/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-25 03:07:31 来源:igfitidea点击:
Add a header to each request using .htaccess
提问by steven
I want to add a custom header to a phpbb installation without touching the code. (Using .htaccess)
我想在不触及代码的情况下向 phpbb 安装添加自定义标头。(使用 .htaccess)
The header is:
标题是:
Strict-Transport-Security: max-age=157680000
Any ideas?
有任何想法吗?
回答by steven
Header add Strict-Transport-Security "max-age=157680000"
回答by Lance Rushing
see http://httpd.apache.org/docs/2.0/mod/mod_headers.html
见http://httpd.apache.org/docs/2.0/mod/mod_headers.html
Header add Strict-Transport-Security "max-age=157680000"

