我正在尝试为我的网站创建用户配置文件,其中 URL 类似于
mysite.com/user/ChrisSalij
目前我的控制器看起来像这样:
<?php
class User extends Controller {
function user(){
parent::Controller();
}
function index(){
$data['username'] = $this->uri->segment(2);
if($data['username'] == FALSE) {
/*load default profile page*/
} else {
/*access the database and get info for $data['username']*/
/*Load profile page with said info*/
}//End of Else
}//End of function
}//End of Class
?>
目前,每当我去的时候,我都会收到 404 错误;
mysite.com/user/ChrisSalij
我认为这是因为它期望有一个名为 ChrisSalij 的方法。虽然我确定我$this->uri->segment();
也在滥用命令
任何帮助,将不胜感激。谢谢