PHP routing with Codeigniter (Titles in URL for SEO)

后端 未结 3 975
故里飘歌
故里飘歌 2021-01-15 04:10

I have some questions concering routing with Codeigniter. What I´m doing now is the following:

$route[\'articles/(:num)\'] = \'articles/view/$1\'; // $1 will         


        
3条回答
  •  长发绾君心
    2021-01-15 04:32

    As we discussed on the comments.

    You can create a route several times and with different parameters each, like:

    $route['articles/(:num)/(:any)']
    $route['articles/(:num)']
    

    I would create a function with a redirect, adding or not the title to it.

    Hope it helps.

提交回复
热议问题