返回顶部
首页 > 资讯 > 后端开发 > PHP编程 >phpcms V9 专题的内容页面生成的html目录太深附最新的修改方法
  • 154
分享到

phpcms V9 专题的内容页面生成的html目录太深附最新的修改方法

html目录 2022-06-12 01:06:01 154人浏览 薄情痞子
摘要

找到文件: \PHPcms\modules\special\functions\global.func.php function content_url 此函数,大概位置23行---56行,找到如下代码:function

找到文件:

\PHPcms\modules\special\functions\global.func.php

function content_url 此函数,大概位置23行---56行,找到如下代码:

function content_url($contentid = 0, $page = 1, $addtime, $type = 'html', $site_info = '') {

 if (!$contentid) return '';

 $url = array();

 $page = max(intval($page), 1);

 $app_path = substr(APP_PATH, 0, -1);

 switch ($type) {

  case 'html':

   if ($site_info['dirname']) {

    if ($page==1) {

     $url[0] = $site_info['domain'].'special/'.date('Y', $addtime).'/'.date('md', $addtime).'/'.$contentid.'.html';

     $url[1] = pc_base::load_config('system', 'html_root').'/'.$site_info['dirname'].'/special/'.date('Y', $addtime).'/'.date('md', $addtime).'/'.$contentid.'.html';

    } else {

     $url[0] = $site_info['domain'].'special/'.date('Y', $addtime).'/'.date('md', $addtime).'/'.$contentid.'-'.$page.'.html';

     $url[1] = pc_base::load_config('system', 'html_root').'/'.$site_info['dirname'].'/special/'.date('Y', $addtime).'/'.date('md', $addtime).'/'.$contentid.'-'.$page.'.html';

    }

   } else {

    if ($page==1) {

     $url[0] = $url[1] = pc_base::load_config('system', 'html_root').'/special/'.date('Y', $addtime).'/'.date('md', $addtime).'/'.$contentid.'.html';

     $url[0] = $app_path.$url[0];

    } else {

     $url[0] = $url[1] = pc_base::load_config('system', 'html_root').'/special/'.date('Y', $addtime).'/'.date('md', $addtime).'/'.$contentid.'-'.$page.'.html';

     $url[0] = $app_path.$url[0];

    }

   }

   break;

按照你的信用修改上面带有颜色部分的代码!红色部分的代码请修改为一致的。不然会出现未知的问题!

--结束END--

本文标题: phpcms V9 专题的内容页面生成的html目录太深附最新的修改方法

本文链接: https://lsjlt.com/news/31756.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作