Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Base.php 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. namespace app\home\controller;
  14. use think\Controller;
  15. use app\common\controller\Common;
  16. use think\Db;
  17. use think\Request;
  18. use app\home\logic\FieldLogic;
  19. class Base extends Common {
  20. public $fieldLogic;
  21. /**
  22. * 初始化操作
  23. */
  24. public function _initialize() {
  25. parent::_initialize();
  26. $this->fieldLogic = new FieldLogic();
  27. // 设置URL模式
  28. set_home_url_mode();
  29. // 子目录
  30. $this->assign('RootDir', ROOT_DIR);
  31. }
  32. /**
  33. * 301重定向到新的伪静态格式(针对被搜索引擎收录的旧伪静态URL)
  34. * @param intval $id 栏目ID/文档ID
  35. * @param string $dirname 目录名称
  36. * @param string $type 栏目页/文档页
  37. * @return void
  38. */
  39. public function jumpRewriteFormat($id, $dirname = null, $type = 'lists')
  40. {
  41. $seo_pseudo = config('ey_config.seo_pseudo');
  42. $seo_rewrite_format = config('ey_config.seo_rewrite_format');
  43. if (3 == $seo_pseudo && 1 == $seo_rewrite_format) {
  44. if ('lists' == $type) {
  45. $url = typeurl('home/Lists/index', array('dirname'=>$dirname));
  46. } else {
  47. $url = arcurl('home/View/index', array('dirname'=>$dirname, 'aid'=>$id));
  48. }
  49. //重定向到指定的URL地址 并且使用301
  50. $this->redirect($url, 301);
  51. }
  52. }
  53. }