1

编辑

我在 routes.php 中的解决方案:

$route['news'] = 'news_controller';
$route['gallery'] = 'gallery_controller';
$route['(:any)'] = 'sites/$1';

在我的网站控制器中:

function index($site_id = '') {
  //sanitize $site_id.
  $this->site = $this->sites_model->get_site($site_id);
  //etc.
}

THX 转 YAN

问题:

所以我用 CodeIgniter 写了一个小 CMS。管理员可以创建站点。当 url 的段类似于数据库中的段时,该站点会自动打开。例如 mysite.com/sites/about 将调用“关于”站点。这很好用。

现在我的网址有问题。我想要这个网址

http://www.mysite.com/sites/about

转向这个:

http://www.mysite.com/about

问题是,我不能使用 routes.php 并为每个站点设置通配符。(因为它们是动态的,我不知道客户将创建哪个站点 - 我不想为他将创建的每个站点编辑 routes.php 文件 - 这应该自动完成)

问题是我也有其他修复控制器,比如新闻、画廊或联系人:mysite.com/news、mysite.com/gallery,......它们工作正常

所以这是我的站点控制器:

class Sites extends Public_Controller {

public $site;
public $url_segment;

public function _remap($method)
{
    $this->url_segment = $this->uri->segment(2);

    $this->load->model('sites_model');
    $this->site = $this->sites_model->get_site($this->url_segment);

    if($this->site !== FALSE)
    {
        $this->show_site($this->site);
    }
    else
    {
        show_404($this->url_segment);
    }
}

public function show_site($data)
{
    $this->template->set('site', FALSE);
    $this->template->set('site_title', $data['name']);
    $this->template->set('content',$data['content']);
    $this->template->load('public/template','sites/sites_view', $data);
}}

这是检查数据库的 Site_model ......如果 url_segment 适合数据库中的标题:

class Sites_model extends CI_Model {

public function get_site($site_url)
{
    if($site_url != ""){
        $this->db->where('name', $site_url);
        $query = $this->db->get('sites', 1);

        if($query->num_rows() > 0){
            return $query->row_array();
        }
        else
        {
            return FALSE;
        }
    }else{
        return FALSE;
    }
} }

我想我需要一些东西来检查控制器是否存在(url的第一段),而不是调用站点控制器并检查站点是否在数据库中,如果是假的,然后调用 404。

有什么建议可以解决吗?

顺便说一句:对不起我的英语

关于GN

4

2 回答 2

2

您可以routes.php通过以下方式处理,只需将(:any)值保留在最后即可:

$route['news'] = 'news_controller';
$route['gallery'] = 'gallery_controller';
$route['(:any)'] = 'sites/$1';

在您的站点控制器中,使用 URL 中的数据路由到特定站点。

function index($site_id = '') {
    //sanitize $site_id.
    $this->site = $this->sites_model->get_site($site_id);
    //etc.
}
于 2012-06-08T16:33:53.970 回答
1

我无法理解问题的全部意图,但是,据我所知,您是否只需要添加:

if ($this->uri->segment(1) != 'sites')
     ... // handle malformed URL
于 2012-06-08T16:28:37.047 回答