从网址

时间:2016-02-03 19:41:15

标签: php codeigniter

我的网址是这样的:http://example.com/controller/method/param1/param2/param3/param4

我的目标是:http://example.com/param1/param2/param3/param4

这里我的控制器'Home'和'Read'。我还在底部包含了我的视图和路由配置。

<?php defined('BASEPATH') OR exit('No direct script access allowed');

class Home extends CI_Controller {

    public function __construct()
    {
        parent::__construct();
    }

    /*
    *   Index method
    */
    public function index() {

        $this->db->select('a.*, c.*');
        $this->db->join('category as c', 'c.catid=a.catid');
        $this->db->limit(10);
        $this->db->order_by('a.id', 'DESC');

        $data['query'] = $this->db->get('article as a');

        $this->load->view('header');
        $this->load->view('home_view', $data);
        $this->load->view('footer');
    }

}


<?php defined('BASEPATH') OR exit('No direct script access allowed');

    class Read extends CI_Controller {

        public function __construct()
        {
            parent::__construct();
        }

        /*
        *   Index method
        */
        public function index() {

            $id = isset($this->uri->segment(3)) ? $this->uri->segment(3) : FALSE;

            $this->db->select('a.*, c.*');
            $this->db->join('category as c', 'c.catid=a.catid');
            $this->db->where('p.id', $id);
            $this->db->limit(1);

            $data['query'] = $this->db->get('article as a');

            $this->load->view('header');
            $this->load->view('single_view', $data);
            $this->load->view('footer');
        }

    }

home_view.php

请看下面的锚点,这是我制作http://example.com/param1/param2/param3/param4

的目标
<div class="post-content">
    <ul>
        <?php foreach( $query->result() as $post ) : ?>
        <li><a href="<?php echo site_url($post->term_name.'/'.$post->term_id.'/'.$post->id.'/'.strtolower(url_title($post->title))); ?>"><?php echo $post->title ?></a></li>
        <?php endforeach; ?>
    </ul>
</div>

当我定义控制器名称时,没问题。但我无法弄清楚我的单个帖子的网址是如何只包含那四个参数

<?php echo site_url('read/'.$post->term_name.'/'.$post->term_id.'/'.$post->id.'/'.strtolower(url_title($post->title))); ?>

在我的路线配置下面:

$route['(:any)'] = "read/index/$1";

任何帮助和建议将不胜感激。

最好的问候

2 个答案:

答案 0 :(得分:1)

检查您可以放置​​下一条路线的文档:

$route['(:any)/(:any)/(:any)/(:any)'] = 'controller/method/$1/$2/$3/$4';
$route['(:any)/(:any)/(:any)'] = 'controller/method/$1/$2/$3';
$route['(:any)/(:any)'] = 'controller/method/$1/$2';

或者如果你传递数字/整数

$route['(:num)/(:num)/(:num)/(:num)'] = 'controller/method/$1/$2/$3/$4';

你也不要忘记将参数传递给你的方法,即使是FALSE。

public function index($param1, $param2, $param3, $param4)
{
    //rest of code that is using params
}

答案 1 :(得分:0)

您可以在routes中使用自定义config/routes.php。换实施例

    #http://example.com/controller_name/method_name/param1/param2/param3/param4

        $route['param1/param2/param3/param4'] = 'controller_name/method_name';

       #Instead of -> 
#http://example.com/controller_name/method_name/param1/param2/param3/param4
      # Display -> http://example.com/param1/param2/param3/param4