route.php 126 B

1234567
  1. <?php
  2. use think\facade\Route;
  3. Route::miss(function () {
  4. return view(app()->getRootPath() . 'public/wap/index.html');
  5. });