| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- * Created by PhpStorm.
- * User: chendeben
- * Date: 2018/6/20
- * Time: 下午2:26
- */
- namespace Heanup\App\Api\Config;
- use Heanup\Frame\Config;
- class Route extends Config
- {
- protected static $data = [
- [
- "name" => "分类",
- "pattern" => "/category/:s/index.html",//api/material/sort/beauty/pre
- "action" => "Heanup\App\Api\Controller\Category"
- ],[
- "name" => "分类",
- "pattern" => "/category/:s/page_:s.html",//api/material/sort/beauty/pre
- "action" => "Heanup\App\Api\Controller\Category"
- ], [
- "name" => "搜索",
- "pattern" => "/kw/:s.html",//api/material/sort/beauty/pre
- "action" => "Heanup\App\Api\Controller\Search"
- ], [
- "name" => "详情页",
- "pattern" => "/product/:s.html",//api/material/sort/beauty/pre
- "action" => "Heanup\App\Api\Controller\Detail"
- ], [
- "name" => "专题页",
- "pattern" => "/pages/:s.html",//api/material/sort/beauty/pre
- "action" => "Heanup\App\Api\Controller\Pages"
- ]
- ];
- }
|