ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
如果涉及到需要重定向的话,可以自行加一个公共的重定向方法 `\www.abc.com\application\index\function.php`里面添加以下内容 ```php //url 跳转到目标URL //time 延迟跳转时间,默认直接跳转 单位/秒 function URL($url,$time = ''){ if(empty($time)){ header("location:$url"); }else{ header("Refresh:{$time};url={$url}"); } } ``` 案例一 ```php class Index extends Action { public function index() { //URL('/模块/控制器/方法','跳转时间'); URL('/index/index/test','2'); } public function test() { echo('test'); } } ```