描述
用户登陆,可登陆成功,但提示“301 Moved Permanently”
问题原因
UCenter1.6.0版本不支持https(SSL),所以,用户登陆与退出时会提示301、或port:80 的情况。
解决方案
1、打开文件../uc_client/client.php
2、查找:
$port = !empty($matches['port']) ? $matches['port'] : 80;
3、替换为:
$port = !empty($matches['port']) ? $matches['port'] : ($matches['scheme'] == 'https' ? 443 : 80);
4、查找:
if(!$fp = @fsocketopen(($ip ? $ip : $host), $port, $errno, $errstr, $timeout)) {
5、替换为:
if(!$fp = @fsocketopen(($scheme == 'https' ? 'ssl' : $scheme).'://'.($scheme == 'https' ? $host : ($ip ? $ip : $host)), $port, $errno, $errstr, $timeout)) {
6、保存文件;
重新登录与退出,查看提示是否已消失。
原创文章,作者:极云坊,如若转载,请注明出处:《【DZ_x3.4】登陆提示 301 Moved Permanently 问题解决方案》https://www.jyf.me/dzx3-4_301method.html