在 Silex 中禁用“/”路由
Disable '/' route in Silex
我需要禁用 silex 主路由 /
,我的意思是,当您进入我的应用程序的主页时,服务器必须响应 404。我可以更改有关路由的配置,以避免执行某些操作吗像这样。
代码
app->get('/', fucntion() use($app){
return new Response('Oops ... ', 404);
});
当我进入 web 应用程序时,在主路由中服务器响应我是这样的。
错误
NotFoundHttpException in RouterListener.php line 125:
No route found for "GET /" (from "http://localhost/projects/")
in RouterListener.php line 125
at RouterListener->onKernelRequest(object(GetResponseEvent), 'kernel.request', object(EventDispatcher))
at call_user_func(array(object(RouterListener), 'onKernelRequest'), object(GetResponseEvent), 'kernel.request', object(EventDispatcher)) in EventDispatcher.php line 174
at EventDispatcher->doDispatch(array(array(object(RouterListener), 'onKernelRequest'), array(object(MiddlewareListener), 'onKernelRequest')), 'kernel.request', object(GetResponseEvent)) in EventDispatcher.php line 43
at EventDispatcher->dispatch('kernel.request', object(GetResponseEvent)) in HttpKernel.php line 129
at HttpKernel->handleRaw(object(Request), '1') in HttpKernel.php line 68
at HttpKernel->handle(object(Request), '1', true) in Application.php line 496
at Application->handle(object(Request)) in Application.php line 477
at Application->run() in index.php line 8
总结
我可以禁用主要路线 /
吗?我可以禁用 RouterListener 来避免此类错误吗?
谢谢。
如果您不为 /
创建路由,silex 将以 404 响应,就这么简单。
您得到的是调试页面,因为您的应用 运行 处于调试模式。关闭它,您将获得一个没有信息泄漏的简单 404 页面。
我需要禁用 silex 主路由 /
,我的意思是,当您进入我的应用程序的主页时,服务器必须响应 404。我可以更改有关路由的配置,以避免执行某些操作吗像这样。
代码
app->get('/', fucntion() use($app){
return new Response('Oops ... ', 404);
});
当我进入 web 应用程序时,在主路由中服务器响应我是这样的。
错误
NotFoundHttpException in RouterListener.php line 125:
No route found for "GET /" (from "http://localhost/projects/")
in RouterListener.php line 125
at RouterListener->onKernelRequest(object(GetResponseEvent), 'kernel.request', object(EventDispatcher))
at call_user_func(array(object(RouterListener), 'onKernelRequest'), object(GetResponseEvent), 'kernel.request', object(EventDispatcher)) in EventDispatcher.php line 174
at EventDispatcher->doDispatch(array(array(object(RouterListener), 'onKernelRequest'), array(object(MiddlewareListener), 'onKernelRequest')), 'kernel.request', object(GetResponseEvent)) in EventDispatcher.php line 43
at EventDispatcher->dispatch('kernel.request', object(GetResponseEvent)) in HttpKernel.php line 129
at HttpKernel->handleRaw(object(Request), '1') in HttpKernel.php line 68
at HttpKernel->handle(object(Request), '1', true) in Application.php line 496
at Application->handle(object(Request)) in Application.php line 477
at Application->run() in index.php line 8
总结
我可以禁用主要路线 /
吗?我可以禁用 RouterListener 来避免此类错误吗?
谢谢。
如果您不为 /
创建路由,silex 将以 404 响应,就这么简单。
您得到的是调试页面,因为您的应用 运行 处于调试模式。关闭它,您将获得一个没有信息泄漏的简单 404 页面。