1 利用js 实现 复制代码 代码如下: if(!$this->userInfo){ $alert_msg = "激活链接错误"; echo"alert('$alert_msg');window.location='$redirect_url';"; //redirect(base_url()); die; } 2 php 实现 复制代码 代码如下: if(!$this->userInfo){ $alert_msg = "激活链接错误"; echo"alert('$alert_msg');";//这种方式没有弹窗效果 why? 加上exit 会有弹窗,后续也会重定向; redirect(base_url()); die; }