Grails - 对页面进行根解析

发布于 2024-12-01 06:18:52 字数 176 浏览 2 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我们只是彼此的过ke 2024-12-08 06:18:52

更改“/”的 URL 映射以使用您的控制器:

"/"(controller: 'main', action: 'index')

Change the URL mapping for "/" to use your controller:

"/"(controller: 'main', action: 'index')
梦幻的味道 2024-12-08 06:18:52

是的,这是可能的,而且也很简单。

在 UrlMappings.groovy 中,添加以下内容:

"/"(controller: "main") 

这将解析为 www.x.com/ 但仍执行 main 控制器的默认操作。

Yes this is possible, and quite simple too.

In your UrlMappings.groovy, add the following:

"/"(controller: "main") 

This will resolve to www.x.com/ but still execute the default action of your main controller.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文