如何在Apache httpd中禁用自动刷新>> [

问题描述 投票:1回答:1
我正在尝试从/ etc / httpd / sites-available中的000-default.conf调用Shell脚本。

000-default.conf文件的内容是:

<VirtualHost *:80> ServerName localhost DocumentRoot /var/www/html/ CustomLog "| /bin/sh /scratch/user/test.sh" custom_user_tracking </VirtualHost>

我的/etc/httpd/conf/httpd.conf已添加以下内容:

ServerName localhost LogFormat "%t [%h] [%m] [%U] [%B] [%b] [%D] [%q] [%s] [%{Referer}i] [%{User-Agent}i]" custom_user_tracking IncludeOptional sites-enabled/*.conf IncludeOptional sites-available/*.conf

我在/ var / www / html / index.html的内容中保留了一个虚拟html文件:

<!DOCTYPE html> <html> <body> <h1>Hello World!</h1> </body> </html>

[当我按下http://localhost:80时,就会调用shell脚本。该shell脚本是可执行的,只显示“ Hello World”。

但是尽管未从浏览器触发url http://localhost:80,但脚本会在5s间隔内自动调用。

这里有人可以帮忙,如何在Apache httpd中禁用自动刷新?

我正在尝试从/ etc / httpd / sites-available中的000-default.conf调用shell脚本。 000-default.conf文件的内容是:

ServerName localhost ...

apache shell httpd.conf
1个回答
0
投票
这是send_message.sh的内容:
© www.soinside.com 2019 - 2024. All rights reserved.