fixed routes example, issue 1073

This commit is contained in:
mdipierro
2012-10-07 10:12:04 -05:00
parent 700a639c8e
commit 5b19b606c4
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.0.9 (2012-10-07 10:11:06) dev
Version 2.0.9 (2012-10-07 10:12:01) dev
+2
View File
@@ -35,8 +35,10 @@ BASE = '' # optonal prefix for incoming URLs
routes_in = (
# do not reroute admin unless you want to disable it
(BASE+'/admin','/admin/default/index'),
(BASE+'/admin/$anything','/admin/$anything'),
# do not reroute appadmin unless you want to disable it
(BASE+'/$app/appadmin','/$app/appadmin/index'),
(BASE+'/$app/appadmin/$anything','/$app/appadmin/$anything'),
# do not reroute static files
(BASE+'/$app/static/$anything','/$app/static/$anything'),