1234567891011121314151617181920212223242526 |
- <?php
- return [
- 'autoload' => false,
- 'hooks' => [],
- 'route' => [
- '/$' => 'wwh/index/index',
- '/product/[:id]' => 'wwh/index/product',
- '/product_detail/[:id]' => 'wwh/index/product_detail',
- '/cases/[:id]' => 'wwh/index/cases',
- '/cases_detail/[:id]' => 'wwh/index/cases_detail',
- '/service/$' => 'wwh/index/service',
- '/market/$' => 'wwh/index/market',
- '/download/$' => 'wwh/index/download',
- '/news/[:id]' => 'wwh/index/news',
- '/news_detail/[:id]' => 'wwh/index/news_detail',
- '/about/$' => 'wwh/index/about',
- '/honor/$' => 'wwh/index/honor',
- '/join/$' => 'wwh/index/join',
- '/contact/$' => 'wwh/index/contact',
- '/search/$' => 'wwh/index/search',
- '/partner/$' => 'wwh/index/partner',
- ],
- 'priority' => [],
- 'domain' => '',
- ];
|