作者 刘锟

update

@@ -35,10 +35,6 @@ class RouteServiceProvider extends ServiceProvider @@ -35,10 +35,6 @@ class RouteServiceProvider extends ServiceProvider
35 */ 35 */
36 public function boot() 36 public function boot()
37 { 37 {
38 - $sld_prefix = isset($_SERVER['HTTP_HOST']) ? explode('.',$_SERVER['HTTP_HOST'])[0] : "";  
39 - if($sld_prefix == 'm'){  
40 - $this->mapAmpRoutes();  
41 - }else{  
42 $this->configureRateLimiting(); 38 $this->configureRateLimiting();
43 39
44 $this->routes(function () { 40 $this->routes(function () {
@@ -52,7 +48,6 @@ public function boot() @@ -52,7 +48,6 @@ public function boot()
52 ->group(base_path('routes/web.php')); 48 ->group(base_path('routes/web.php'));
53 }); 49 });
54 } 50 }
55 - }  
56 51
57 /** 52 /**
58 * Configure the rate limiters for the application. 53 * Configure the rate limiters for the application.
@@ -65,13 +60,4 @@ protected function configureRateLimiting() @@ -65,13 +60,4 @@ protected function configureRateLimiting()
65 return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip()); 60 return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip());
66 }); 61 });
67 } 62 }
68 -  
69 - /**  
70 - * @author Akun  
71 - * @date 2024/01/26 11:03  
72 - */  
73 - protected function mapAmpRoutes(){  
74 - Route::namespace('App\Http\Controllers\Amp')  
75 - ->group(base_path('routes/amp.php'));  
76 - }  
77 } 63 }