>  Is CakePHP routing still available if i turn mod_rewrite OFF.

Yes, but you will end having index.php before every route, i.e.
index.php/controller/action/param1/param2.

>  How they are linked to each other?

If the request doesn't hit any existing file or directory in the
webroot, then handle it to webroot/index.php. Index.php routes the
request through CakePHP's routing system and dispatch the
corresponding Controller::action pair, and pass the request data (get
and post) to it.

This, and many other basic questions are covered in both manuals:

CakePHP 1.1: http://manual.cakephp.org
CakePHP 1.2: http://book.cakephp.org


>  >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to