Няма описание
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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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\api\controller;
  14. class Rewrite extends Base
  15. {
  16. /*
  17. * 初始化操作
  18. */
  19. public function _initialize() {
  20. parent::_initialize();
  21. }
  22. /**
  23. * 检测服务器是否支持URL重写隐藏应用的入口文件index.php
  24. */
  25. public function testing()
  26. {
  27. ob_clean();
  28. exit('Congratulations on passing');
  29. }
  30. /**
  31. * 设置隐藏index.php
  32. */
  33. public function setInlet()
  34. {
  35. $seo_inlet = input('param.seo_inlet/d', 1);
  36. /*多语言*/
  37. if (is_language()) {
  38. $langRow = \think\Db::name('language')->order('id asc')->select();
  39. foreach ($langRow as $key => $val) {
  40. tpCache('seo', ['seo_inlet'=>$seo_inlet], $val['mark']);
  41. }
  42. } else { // 单语言
  43. tpCache('seo', ['seo_inlet'=>$seo_inlet]);
  44. }
  45. /*--end*/
  46. ob_clean();
  47. exit('Congratulations on passing');
  48. }
  49. /**
  50. * 关闭父弹框
  51. */
  52. public function close_parent_layer()
  53. {
  54. $version = getCmsVersion();
  55. $str = <<<EOF
  56. <script type="text/javascript" src="{$this->root_dir}/public/static/common/js/jquery.min.js?v={$version}"></script>
  57. <script type="text/javascript" src="{$this->root_dir}/public/plugins/layer-v3.1.0/layer.js?v={$version}"></script>
  58. <script type="text/javascript">
  59. $(function(){
  60. parent.layer.closeAll();
  61. });
  62. </script>
  63. EOF;
  64. echo $str;
  65. exit;
  66. }
  67. }