* Date: 2018-4-3 */ // 前端URL的路由配置(支持TP5本身的路由规则) $rewrite = []; $askTypeModel = new \weapp\Ask\model\AskTypeModel; $askConfData = $askTypeModel->getWeappData(); $ask_seo_pseudo = 1; if (!empty($askConfData['data']['seo_pseudo'])) { $ask_seo_pseudo = intval($askConfData['data']['seo_pseudo']); } if (3 == $ask_seo_pseudo) { $weapp_id = \think\Db::name('weapp')->where(['code'=>'Ask'])->cache(true, null, "weapp")->getField('id'); $rewrite = [ 'ask/list_'.$weapp_id.'___p

$' => array( 'plugins/Ask/index', array('method' => 'get', 'ext' => 'html'), array('is_recom' => '[\d]+','type_id' => '[\d]+', 'p' => '[\d]+'), 'cache'=>1 ), 'ask/list_'.$weapp_id.'__$' => array( 'plugins/Ask/index', array('method' => 'get', 'ext' => 'html'), array('is_recom' => '[\d]+','type_id' => '[\d]+'), 'cache'=>1 ), 'ask/list_'.$weapp_id.'__p

$' => array( 'plugins/Ask/index', array('method' => 'get', 'ext' => 'html'), array('type_id' => '[\d]+', 'p' => '[\d]+'), 'cache'=>1 ), 'ask/list_'.$weapp_id.'_$' => array( 'plugins/Ask/index', array('method' => 'get', 'ext' => 'html'), array('type_id' => '[\d]+'), 'cache'=>1 ), 'ask$' => array('plugins/Ask/index',array('method' => 'get', 'ext' => 'html'), 'cache'=>1), 'ask/view_'.$weapp_id.'_$' => array( 'plugins/Ask/details', array('method' => 'get', 'ext' => 'html'), array('ask_id' => '[\d]+'), 'cache'=>1 ), ]; } return $rewrite;