Search code examples
codeigniterurl-routing

I want to rewrite Url with URI Routing of my CodeIgniter App


I am using codeigniter, I have URL like this (http://localhost/en/home/submit). My App has the same url with multi languages. like

I want to rewrite this url with URI Routing like this

How should I set up URI Routing?


Solution

  • I think you need the opposite of what ulvund posted:

    $route['(en|fr|es|de)/submit'] = "home/submit/$1";
    

    ... where Home is the controller and submit is the method.