SES URLs are a common URL scheme often used to improve search ranking. There is a full article on [http://docs.model-glue.com/wiki/HowTos/HowToUseSearchEngineSafeUrls implementing SES URLS in Model-Glue] already, below is the readers digest condensed version: 1 In your application specific ColdSpring.xml file, add a bean definition for modelglue.urlManager. This will override the default URL manager for Model-Glue and use the SES URL Manager. (you can make your own URL manager that has the same methods but custom implementation as you like): {{{ }}} 2 Make sure all creation of links uses the [http://docs.model-glue.com/wiki/ReferenceMaterials/EventApi#LinkToeventName:stringappend:listanchor:string event.linkTo()] syntax. This means you'd change: {{{ Example Link }}} to: {{{ Example Link }}} It's also a good practice to make sure all links to CSS, Images, Scripts, or any other asset are root relative, even if you're not using SES URLs. This will give you the flexibility to turn SES URL parsing on or off for your entire application at the flip of a switch.