如何让我的 Apache 服务器指向正确的位置?

如何让我的 Apache 服务器指向正确的位置?

我试图让我的 apache 服务器使用 Eclipse 工作区中的各种包,但这些包不在默认的 Apache 服务器目录中。到目前为止,没有运气,我得到的只是“未找到”错误。

我的 httpd-vhosts.conf 文件中的片段:

<VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot "/Users/a123123/Development/Quote/DesktopClient/src/main/webapp"
    ServerName q.local
    ErrorLog "/var/log/apache2/error.log"


Alias /DesktopClient "/Users/a123123/Development/Quote/DesktopClient/src/main/webapp"
<Directory "/Users/a123123/Development/Quote/DesktopClient/src/main/webapp">
allow from all
Options +Indexes
</Directory>

答案1

尝试制作一个符号链接,通过使用这个:

ln -s /DesktopClient "~/Development/Quote/DesktopClient/src/main/webapp"

相关内容