Apache 虚拟主机如何使用标头添加位置?

Apache 虚拟主机如何使用标头添加位置?

因此,我在 docker 中使用 liferay 和 apache,并希望在用户输入以下 URL localhost/tester 时,将标头添加到他们的请求中。我尝试使用一个简单的虚拟主机来解决这个问题

<VirtualHost *:80>
    ServerName localhost
    <Location /tester>
      RequestHeader append tester "true"
      Satisfy Any
      Allow from all
    </Location>
</VirtualHost>

但是当我尝试导航到 localhost/tester 时,我只得到“未找到资源”

答案1

Apache 告诉您它不知道要提供什么内容http://localhost/tester。您需要给它一个DocumentRoot,比如说

DocumentRoot /var/www/html

然后tester/index.html在其中创建一个文件。该文件可以为空。

相关内容