localhost:8080/hello-world returns 404 - enonic xp

localhost:8080/hello-world returns 404 - enonic xp

我已经创建了 enonic 项目 hello-world 站点。内容工作室将网站 URL 显示为 /hello-world 但是当浏览器调用 localhost:8080/hello-world 它 returns 404 来自 enonic 服务器的错误日志。

如何解决这个问题?

您必须使用如下内容配置您的 XP_HOME/config/com.enonic.xp.web.vhost.cfg 文件:

enabled = true

mapping.a.host = localhost
mapping.a.source = /hello-world
mapping.a.target = /site/default/master/hello-world
mapping.a.idProvider.system = default

您可以在 official XP-documentation about vhost 中阅读更多相关信息。