gpt4 book ai didi

java - tomcat的域问题

转载 作者:行者123 更新时间:2023-11-28 23:59:28 26 4
gpt4 key购买 nike

我已经在我的 VPS 上部署了一个基于 java 的网站。它已成功部署并正常工作。我已经定义了一个重定向规则来从根目录重定向到子文件夹。我现在面临的问题是,

if I put domain.com -> redirects to domain.com/pages/shopIndex (shows page correctly)

when I put www.domain.com -> redirects to www.domain.com/pages/shopIndex (shows 404)

我不理解这种奇怪的行为,因为我在我的 httpd.conf 中为 domain.com 添加了别名到 www.domain.com

这是我的虚拟主机文件的样子:

<VirtualHost 192.169.235.118:80>
ServerName domain.parentDomain.in
ServerAlias domain.com www.domain.com www.domain.parentDomain.in
DocumentRoot /path_to/domain.com
ServerAdmin admin@admin
UseCanonicalName Off
CustomLog /path_to/domain.parentDomain.in combined
</VirtualHost>

谁能帮我找到解决方案?

最佳答案

我得到了这个问题的解决方案,server.xml 文件有 Alias 标签,我们可以在其中为我们想要的主机放置 Alias代表。

这就是我解决问题的方法(在 host 标签内的 server.xml 中):

<Alias>www.domain.com</Alias>

关于java - tomcat的域问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39787021/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com