您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789
  1. <?php
  2. $router->map('GET|POST', '/', ROOTDIR . DS . APP .'/Data/Dashboard.php', 'home');
  3. $router->map('GET', '/statistics/[a:nameOfStats]', ROOTDIR.DS.APP.'/Data/Statistics.php', 'statisticsPage');
  4. $router->map('GET|POST', '/pageadmin/[a:nameOfPage]',ROOTDIR.DS.APP.'/Data/PageAdmin.php','PageAdministration');
  5. $router->map('GET', '/logout', ROOTDIR.DS.APP.'/Data/Logout.php', 'logout');