config.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. $home_config = array(
  14. //分页配置
  15. 'paginate' => array(
  16. 'type' => 'eyou',
  17. 'var_page' => 'page',
  18. 'list_rows' => 15,
  19. ),
  20. // +----------------------------------------------------------------------
  21. // | 异常及错误设置
  22. // +----------------------------------------------------------------------
  23. // 异常页面的模板文件
  24. //'exception_tmpl' => ROOT_PATH.'public/static/errpage/404.html',
  25. // errorpage 错误页面
  26. //'error_tmpl' => ROOT_PATH.'public/static/errpage/404.html',
  27. /**假设这个访问地址是 www.xxxxx.dev/index/goods/goodsInfo/id/1.html
  28. *就保存名字为 index_goods_goodsinfo_1.html
  29. *配置成这样, 指定 模块 控制器 方法名 参数名
  30. */
  31. 'HTML_CACHE_ARR'=> array(),
  32. );
  33. $html_config = include_once 'html.php';
  34. return array_merge($home_config, $html_config);
  35. ?>