gpt4 book ai didi

php - AddHandler 不适用于 .php 文件 - Apache 2.4

转载 作者:可可西里 更新时间:2023-11-01 12:39:18 25 4
gpt4 key购买 nike

我正在为 .php 和 .html 文件创建一个名为 helloworld 的虚拟处理程序。处理程序包含以下内容:

static int helloworld_handler(request_rec *r){
ap_rprintf(r, "hello world!");
return OK;
}

我在 apache2.conf 中得到了这个:

<Directory /var/www/html>
AddHandler helloworld .php .html
</Directory>

处理程序“helloworld”适用于 .html 文件,但不适用于 .php 文件。我认为这主要是因为默认的 php 处理程序覆盖了 .php 文件的 helloworld 处理程序。如何使“helloworld”处理程序适用于 .php 文件?

如果需要任何额外信息,请询问。

最佳答案

您可能想尝试 SetHandler相反

<FilesMatch \.php$>
SetHandler helloworld
</FilesMatch>

关于php - AddHandler 不适用于 .php 文件 - Apache 2.4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29342964/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com