Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将 2 个域名指向一个根方向以使用。所以两个域都可以使用这个方向的内容:/var/www/clients/client0/web6/web 我如何在 ispconfig 中做到这一点?
它在 ubuntu 上的 nginx 上运行。
导航如下,
Select the second domain> Options>Apache Directives
Select the second domain
Options
Apache Directives
并输入以下指令。
对于阿帕奇:
DocumentRoot "/var/www/clients/client0/web6/web"
对于 nginx:
root /var/www/clients/client0/web6/web;##merge##
重新启动 apache/nginx,现在两个域现在应该指向同一个根目录。