How to replace underscores in codeigniter url with dashes?

前端 未结 8 1242
有刺的猬
有刺的猬 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:03

    Code Ignitor 3 has this in built:

    $route['translate_uri_dashes'] = FALSE;

    Just change to TRUE and you can use either _ or -.

    Documentation

提交回复
热议问题