-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,9 +10,12 @@ | |
* Usage example of route.php is inside mvc_bootstrap.bat batch script | ||
* | ||
* This file implements HTTP routing when using PHP built in web server instead of Apache HTTP server. | ||
* It provides the auto-loading of classes and the MVC objects creations, by using | ||
* framework\Loader and framework\Dispatcher classes, depending on the requested URL. | ||
* | ||
* It can detect both application or content centric HTTP request. | ||
* 1) When application centric: | ||
* It provides the auto-loading of classes and the MVC objects creations, by using | ||
* framework\Loader and framework\Dispatcher classes, depending on the requested URL. | ||
* 2) When content centric: | ||
* Just serve the content of requested resource | ||
* | ||
* @filesource index.php | ||
* @author Rosario Carvello <[email protected]> | ||
|