Grails - 对页面进行根解析
我有一个 Grails 应用程序连接到 Tomcat 服务器的根目录。当有人访问该域时,应用程序会重定向到默认控制器,例如 /main
。然后浏览器显示 url www.x.com/main
,但如果我可以只显示 www.x.com
,我真的很喜欢。这可能吗?谢谢。
I have a Grails application that is hooked up to the ROOT of a Tomcat server. When someone goes to the domain, the application redirects to a default controller, like /main
. Then the browser shows the url www.x.com/main
, but I would really like it if I could just show www.x.com
. Is this possible? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更改“/”的 URL 映射以使用您的控制器:
Change the URL mapping for "/" to use your controller:
是的,这是可能的,而且也很简单。
在 UrlMappings.groovy 中,添加以下内容:
这将解析为
www.x.com/
但仍执行main
控制器的默认操作。Yes this is possible, and quite simple too.
In your UrlMappings.groovy, add the following:
This will resolve to
www.x.com/
but still execute the default action of yourmain
controller.