How to make a route to an existing URL, bypassing the standard route to the controller?
The situation is this: There is a url, i.e. On my site there is a folder with demos that does not belong to Kohana, but lies in the root of the site, sometimes I need to display some demo page from there, bypassing everything and everyone, the standard route is done like this:
// РОУТЫ НА ДЕМКИ Route::set('demoform','demo/php/form/index.html') ->defaults(array( 'controller' => 'mycontroller', 'action' => 'index', ));
Here is a snag, in fact I would like to substitute a blank url instead of defaults
, is it possible?