私はマッピングを持っています:
"/$controller/$action?/$id?"{
constraints {
// apply constraints here
}
} // i used scaffolding and i think this is required by the generated stuff
'/'(controller:'home') //for the home page
'/$param1?/$param2?'(controller:'search') //for a search page
ブラウザに表示される必要なURLは次のとおりです
。www.site.com/-ホーム用
www.site.com/keyword1/keyword2-これらのオプションのキーワードによる検索
これはうまくいくようですが、私の質問は次のとおりです。これが正しいと期待できますか、または状況によっては、grailsが物事を混乱させる可能性がありますか?