0
我有一個onKernelResponse偵聽器。 在我的代碼中,我想知道用戶是否請求防火牆URL。 我想設置我的變量$ isRequestToAProtectedUrl如何知道一個請求是否被保護的url
...
if($isAjaxRequest && !$isAuthenticated && $isRequestToAProtectedUrl){
$this->container->get("session")->invalidate();
header('NOT_AUTHORIZED: 499'); //modifiy header(must be catch in client)
exit();
}
...
在此先感謝