这个文件夹结构是否可以在 apache 中显示此 URL 的内容?

这个文件夹结构是否可以在 apache 中显示此 URL 的内容?

假设我想要这个网址:

https://mysub.domain.com/   (1)
https://mysub.domain.com/matomo  (2)
https://mysub.domain.com/myapp (3)

在我的文件夹结构中我想要有 php 应用程序(1 和 2)和节点 api(3,我将代理它),如下所示:

/var/www/wordpress -> this should respond to 1
/var/www/matomo/ -> this should respond to 2
/var/www/myapp/ ->this should respond to 3

在任何 apache 配置中是否可能 1 显示文件夹“/var/www/wordpress”的内容?并且 2 显示文件夹“/var/www/matomo”的内容,如果可以,如何做?

提前致谢

答案1

设置DocumentRoot/var/www/wordpress并使用文件系统中的符号链接或AliasApache 中的语句来重定向流量马托马或者我的应用程序到不同的文件夹。

查看 Apache 文档了解详细信息:https://httpd.apache.org/docs/2.4/urlmapping.html#outside

相关内容