tags:

views:

19

answers:

1

I am running multiple applications with a single Codeigniter system/ folder using the recommended way on the Codeigniter wiki. Each application runs fine and I can link between apps using absolute URLs.

Is there some way I can use or extend the URL helper class (functions like anchor(), redirect()... etc.) to generate links to controllers across applications. I would like to avoid absolute URLs

Thanks!

+1  A: 

You can use Matchbox or Modular separation and creat multiple modules. Then you can add controllers, models etc in each module.

shin
Thanks!! Definitely worth trying
Gurunandan
I looked at it and would like to use Modular Separation - Is there some documentation out there apart from the single page on the wiki you have linked above?
Gurunandan