Playframework:http.path已设置,但无法找到主页

时间:2013-09-16 04:24:21

标签: playframework playframework-1.x

我在application.conf中设置了主路径:

http.path=/vcloud/

但现在我无法访问http://localhost:9000/vcloud/,我认为此路径应该指向我的主页,但现在它是一个404错误页面。

这是我的路线:

# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~

# Home page
GET     /                                       Application.index

# Ignore favicon requests
GET     /favicon.ico                            404

# Map static resources from the /app/public folder to the /public path
GET     /public/                                staticDir:public

# Catch all
*       /{controller}/{action}                  {controller}.{action}

我正在使用Play 1.x

2 个答案:

答案 0 :(得分:1)

如果删除最后一个斜杠,它应该按预期工作。

http.path=/vcloud

答案 1 :(得分:0)

如果您使用的是Play 2.0.x,则需要使用此处所述的application.context [2.0] is there an equivalent of http.path play 1.x setting?