Question about CodeIgniter 4 URL structure

Viewed 33

I'm thinking of porting my site to CodeIgniter, but I have a few concerns mainly that I have hundreds of pages with the following URL structure that must be kept. this is the structure that I need: https://mysite/my-url-link

Can CodeIgniter allow me to route this way?

thanks.

1 Answers

You can archive this by enabling translate_uri_dashes() in the settings. By default, it is false.

Syntax

$route['translate_uri_dashes'] = FALSE;

This option enables you to automatically replace dashes (‘-’) with underscores in the controller and method URI segments, thus saving you additional route entries if you need to do that


Example

Assume you have a URL product/list you can use as product-list or product_list.

$route['product-list'] = 'product/list';
Related