问题:
phpcmsv9 修改协议为https后分页无法正常显示。
解决方法:
1、打开文件phpcms\libs\functions\global.func.php
2、搜索function pageurl
替换如下代码:
$url = str_replace(array('http://','//','~'), array('~','/','http://'), $url);
为
//ASMITA修改 if(substr($url,0,5)=="https"){ $url = str_replace(array('https://','//','~'), array('~','/','https://'), $url); } else{ $url = str_replace(array('http://','//','~'), array('~','/','http://'), $url); }
相关文章教程推荐:phpcms教程
以上是phpcms修改协议为https后分页不显示的详细内容。更多信息请关注PHP中文网其他相关文章!