搜索内容

最新文章

  • PHPCMS

    phpcms开启https后出现重定向循环或打不开的解决办法

    Phpcms不支持https的解决办法,修改文件,使用https协议。 1、\phpcms\libs\functions\global.func.php 找到: $url = str_replace(array('http://','//','~'), array('~','/','http://'), $url); 替换为: $url = str_replace(array('https://','//','~'), array('~','/','https://'), $url); 理论上修改这一个文件后,……
    admin 2024-06-29
  • PHPCMS

    PHPCMS V9伪静态规则

    PHPCMS程序中已经默认包含了 apache 伪静态规则,但是如果您使用IIS则需要自己转换一次。 apache 规则 将规则放在根目录.htaccess文件中 RewriteEngineon RewriteRule ^content-([0-9]+)-([0-9]+)-([0-9]+).html index.php?m=content&c=index&a=show&catid=$1&id=$2&page=$3 RewriteRule ^show-([0-9……
    admin 2021-08-29