app.php 273 B

123456789101112131415
  1. <?php
  2. use think\facade\Route;
  3. Route::get('',function (){
  4. return 'error url';
  5. });
  6. Route::get('hello', 'Index/index');
  7. Route::get('core', 'Core/xs');
  8. Route::get('cars', 'Index/carRes');
  9. //Route::group('xx', function (){
  10. // Route::get('hello', 'index/index');
  11. //});