1. 程式人生 > >welcome to nginx

welcome to nginx

官網相容以前路徑訪問,新增路徑跳轉

手機端路由:laravel 路由


Route::name('wap-index2')->get('/phone', 'Wap\[email protected]');


Route::get('/phone',function(){

   return redirect()->route('wap-index2');
});

pc端路由:laravel 路由,以前預設使用了domain/index.html 導致專案更新預設訪問nginx配置成功頁面(welcome to nginx),解決辦法,重寫配置,順便301跳轉

if ($request_uri = /index.html) {

	 return 301 http://domain.com;
  }