在play framework 2.1项目中将sitemap.xml放在何处

时间:2013-08-31 04:15:11

标签: sitemap playframework-2.1

只是为了快速提问。 sitemap.xml放在play框架2.1项目中的哪个位置?我们是否需要将路由文件配置为sitemap.xml?

感谢您的帮助

感谢, 最好的rgsd, a1ucard

1 个答案:

答案 0 :(得分:5)

动作会动态生成sitemap.xml,然后你必须像这样配置网址:

GET   /sitemap.xml    controllers.Application.sitemapGenerator

您手动生成sitemap.xml,然后将其放入Play应用的public文件夹中,然后添加资产路线:

GET   /sitemap.xml    controllers.Assets.at(path="/public", file = "sitemap.xml")