23 lines
1.1 KiB
Plaintext
23 lines
1.1 KiB
Plaintext
|
|
<?php
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
// | ShopXO 国内领先企业级B2C免费开源电商系统
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
// | Author: Devil
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
// | 路由规则
|
||
|
|
// +----------------------------------------------------------------------
|
||
|
|
use think\facade\Route;
|
||
|
|
|
||
|
|
// 分隔符
|
||
|
|
$ds = MyC('common_route_separator', '-', true);
|
||
|
|
|
||
|
|
// 插件调用
|
||
|
|
Route::rule(':pluginsname'.$ds.'[:pluginscontrol]'.$ds.'[:pluginsaction]'.$ds.'[:id]','plugins/index')->completeMatch();
|
||
|
|
Route::rule(':pluginsname'.$ds.':pluginscontrol'.$ds.':pluginsaction'.$ds.'[:id]','plugins/index');
|
||
|
|
?>
|