###*路由限制*
* * * * *
//ip限制
Route::ip(miexd $ip, Closure $func, array $args = []);
//域名限制
Route::domain(miexd $domain, Closure $func, array $args = []);
//端口限制
Route::port(miexd port, Closure $func, array $args = []);
//https限制
Route::ssl(Closure $func, array $args = []);
Route::ip(['192.168.0.100'], function () {
...Route::group();
...Route::get();
...code;
});
Route::domain(['www.example.com'], function () {
...Route::group();
...Route::get();
...code;
});



