我在 symfony 1.4 中有一个现有项目
对于静态页面,我们使用提供以下 URL 的模块 Page:
http://www.example.com/page/aboutus
http://www.example.com/page/faq
http://www.example.com/ (page/index method, points to method page/home)
对于新的需求,我们需要以下格式的 URL:
http://www.example.com/aboutus
http://www.example.com/faq
http://www.example.com/ (index/home method of page module; working as page is default module)
有 16 个这样的静态页面,都列在page
模块下。到目前为止,我正计划创建 16 个新模块,并将每个静态页面放在index
新模块的方法中,但我想这是一个糟糕的解决方案,希望 symfony 绝对不是为了以这种方式使用而设计的。
有没有办法从 URL 中跳过模块名称,至少对于默认模块?