| 12345678910111213141516171819202122232425262728293031323334 |
- <?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.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"
- ]
- ];
- }
|