問題:
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中文網其他相關文章!