Showing
1 changed file
with
9 additions
and
10 deletions
@@ -70,16 +70,13 @@ class Bootstrap extends Bootstrap_Abstract | @@ -70,16 +70,13 @@ class Bootstrap extends Bootstrap_Abstract | ||
70 | $module = 'Index'; | 70 | $module = 'Index'; |
71 | $controller = 'Index'; | 71 | $controller = 'Index'; |
72 | $action = 'Index'; | 72 | $action = 'Index'; |
73 | - // 三级域名 | 73 | + // 二级域名 |
74 | if (2 === $level) { | 74 | if (2 === $level) { |
75 | $subDomain = strval($hostParts[0]); | 75 | $subDomain = strval($hostParts[0]); |
76 | switch (strtolower($subDomain)) { | 76 | switch (strtolower($subDomain)) { |
77 | - case 'm': // 老版(到频道选择) | ||
78 | - case 'buy': // 测试环境的域名, 以后可去掉 | ||
79 | - case 'login': // 登录 | ||
80 | - break; | ||
81 | - case 'new': // 原新版(到男生首页) | ||
82 | - $controller = 'Boys'; | 77 | + case 'www': // 主站 |
78 | + case 'new': // 原新版 | ||
79 | + case 'dev': // 开发环境 | ||
83 | break; | 80 | break; |
84 | case 'search': // 搜索 | 81 | case 'search': // 搜索 |
85 | $controller = 'Search'; | 82 | $controller = 'Search'; |
@@ -89,11 +86,13 @@ class Bootstrap extends Bootstrap_Abstract | @@ -89,11 +86,13 @@ class Bootstrap extends Bootstrap_Abstract | ||
89 | $module = 'Guang'; | 86 | $module = 'Guang'; |
90 | break; | 87 | break; |
91 | case 'list': // 商品列表 | 88 | case 'list': // 商品列表 |
92 | - case 'item': // 商品详情 | ||
93 | $module = 'Product'; | 89 | $module = 'Product'; |
94 | break; | 90 | break; |
95 | - case 'cart': // 购物车 | ||
96 | - $module = 'Cart'; | 91 | + case 'sale'://促销 |
92 | + $module = 'Product'; | ||
93 | + $controller = 'sale'; | ||
94 | + $saleRequest = new Yaf\Request\Http('/product/sale/index'); | ||
95 | + $dispatcher->setRequest($saleRequest); | ||
97 | break; | 96 | break; |
98 | default: // 其它(识别为品牌) | 97 | default: // 其它(识别为品牌) |
99 | $module = 'Product'; | 98 | $module = 'Product'; |
-
Please register or login to post a comment