mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-12-01 11:29:59 +08:00
22 lines
830 B
PHP
22 lines
830 B
PHP
|
<?php
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Author: liu21st <liu21st@gmail.com>
|
||
|
// +----------------------------------------------------------------------
|
||
|
|
||
|
// 搜索入口
|
||
|
define('BIND_MODULE', 'Home');
|
||
|
define('BIND_CONTROLLER', 'Search');
|
||
|
define('BIND_ACTION', 'Index');
|
||
|
|
||
|
// 引入公共入口文件
|
||
|
require './core.php';
|
||
|
|
||
|
// 引入ThinkPHP入口文件
|
||
|
require './ThinkPHP/ThinkPHP.php';
|
||
|
?>
|