web.php 917 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. use Illuminate\Support\Facades\Route;
  3. use App\Http\Controllers\Account\AccountController;
  4. /*
  5. |--------------------------------------------------------------------------
  6. | Web Routes
  7. |--------------------------------------------------------------------------
  8. |
  9. | Here is where you can register web routes for your application. These
  10. | routes are loaded by the RouteServiceProvider within a group which
  11. | contains the "web" middleware group. Now create something great!
  12. |
  13. */
  14. // 根据域名判断返回不同的入口文件
  15. Route::any('{slug}', function ($slug = null) {
  16. $host = request()->getHost();
  17. // 如果是动漫音频域名,返回动漫入口
  18. if (strpos($host, 'anime') !== false) {
  19. return app(AccountController::class)->animeIndex(request());
  20. }
  21. // 默认返回普通入口
  22. return app(AccountController::class)->index(request());
  23. })->where('slug', '(.*)?');