XAMPP 管理 headers(服务器响应 headers)

XAMPP managing headers (server response headers)

我需要修改本地主机页面服务器响应(编辑 headers)- 我正在使用 XAMPP(apache + msql,在 linux 机器上)。我找不到该怎么做。也许 programmers/admins 中的一些人知道我如何做到这一点 - 分享他们的知识并节省我的时间。

如果有article/link我会很乐意使用

我无法使用实时服务器(我的页面一团糟 - 它奇迹般地在本地主机上工作......),我唯一安装的是 xampp,所以编辑响应 headers到xampp就完美了。

感谢任何指示。

编辑: https://www.a2hosting.com/kb/developer-corner/apache-web-server/modifying-http-headers

不适合我。

<IfModule mod_headers.c>
  Header set Test "testing"
</IfModule>

.htaccess 内部

在你的 .htaccess 文件中( 应该放在你的 index.html 所在的位置)输入:

### add custom header to all server responses from ALL files:
Header add Custom-Header: "parameter=value"

### add custom header to SINGLE file:
<Files someOtherFile.html>
  Header add Custom-Header: "parameter=value"
</Files>

我正在使用 linux,也许在 windows 上还有一些你应该做的事情,但记得在编辑 .htaccess 后重新启动 xampp。