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
- http://localhost/en/submit
- http://localhost/fr/submit
- http://localhost/de/submit
- http://localhost/es/submit
How should I set up URI Routing?
I think you need the opposite of what ulvund posted:
… where Home is the controller and submit is the method.