How to replace underscores in codeigniter url with dashes?

前端 未结 8 1255
有刺的猬
有刺的猬 2021-01-30 09:28

I would like to know the simplest solution to changing the underscores of my codeigniter urls to dashes, for seo reasons.

My controllers look like:

publi         


        
8条回答
  •  醉酒成梦
    2021-01-30 10:19

    Open application/config/routes.php and change

    $route['translate_uri_dashes'] = TRUE;
    

    That is it you need to do.

    Now when you access www.domain.com/request-guide, it will instantiate request_guide controller.

    It will work with all controllers with name containing _ (underscore).

提交回复
热议问题