/**
* Router
*
-* Run route() in a file with a defined routing pattern and send all
+* Run dispatch() in a file with a defined routing pattern and send all
* requests to that file, this will then load and appropriatley run
-* the right source files
+* the right source files. You can use mod_rewrite like this:
+*
+* RewriteEngine on
+* RewriteCond %{REQUEST_URI} !static/(.*)$
+* RewriteRule ^(.*)$ index.php
+*
+* This will prevent the rewriting on any file in the static/ directory
*
* @author Blue Static
* @copyright Copyright (c)2002 - [#]year[#], Blue Static