Laravel 5 禁用CSRF token访问路由

by Web全栈工程师 on 2015 年 03 月 01 日

使用POST和DETELE方式访问路由,Laravel5默认是开启了CSRF,有二种方法可以关闭CSRF访问

方法一,全局关闭CSRF功能

open the file: /app/Http/Kernel.php
注释掉以下这行

/\App\Http\Middleware\VerifyCsrfToken::class,

方法二,在制定路由上关闭CSRF功能

打开App\Http\Middlewasre\VerifyCsrfToken.php


具体细节,可以参考Laravel官方文档

参考资料:
https://zh.wikipedia.org/wiki/%E8%B7%A8%E7%AB%99%E8%AF%B7%E6%B1%82%E4%BC%AA%E9%80%A0
https://en.wikipedia.org/wiki/Cross-site_request_forgery
https://laravel.com/docs/5.1/routing#csrf-protection
http://www.camroncade.com/disable-csrf-for-specific-routes-laravel-5/

Comments on this entry are closed.

Previous post:

Next post: