Love Fuel?    Donate

FuelPHP Forums

Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
route all request to a single view
  • hello,

    I am pretty sure it's a very dump question, bit after reading the docs I am still not able to find the solution.

    I am trying to develop an application with FuelPHP and ExtJS4 and all I need is route all controller action to a single View that will contain all the javascript code.

    Can you please help me, maybe just suggesting where to look in the docs?

    Thanks a lot!

    carlo
  • array(
         '(.*)' => 'controller/all',
    )
    and this might work too
    array(
         '(:any)' => 'controller/all',
    )

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion