当前位置:首页 > CMS教程 > 其它CMS > 列表

确保Laravel网站不会被嵌入到其他站点中的方法

发布:smiling 来源: PHP粉丝网  添加日期:2022-01-10 17:23:50 浏览: 评论:0 

这篇文章主要介绍了确保Laravel网站不会被嵌入到其他站点中的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧。

HTTP 响应头部中,有一个字段,叫做 X-Frame-Options,该字段可以用来指示是否允许自己的网站被嵌入到其他网站的 <iframe> 或者 <object> 标签中。该头部有三个值

DENY - 始终不允许嵌入,即使是同一个域名

SAMEORIGIN - 只能在相同域名中嵌入

ALLOW-FROM uri - 设置允许的域

通常,可以在 HTTP 代理中进行配置,比如 nginx

add_header X-Frame-Options SAMEORIGIN;

Laravel 自带了用来「只允许同域名嵌入」的中间件,我们只需要在 /app/Http/Kernel.php 中添加即可

  1. // /app/Http/Kernel.php 
  2. protected $middleware = [ 
  3.   \Illuminate\Http\Middleware\FrameGuard::class
  4. ]; 

该中间件的实现如下

  1. <?php 
  2.  
  3. namespace Illuminate\Http\Middleware; 
  4.  
  5. use Closure; 
  6.  
  7. class FrameGuard 
  8.   /** 
  9.    * Handle the given request and get the response. 
  10.    * 
  11.    * @param \Illuminate\Http\Request $request 
  12.    * @param \Closure $next 
  13.    * @return \Symfony\Component\HttpFoundation\Response 
  14.    */ 
  15.   public function handle($request, Closure $next
  16.   { 
  17.     $response = $next($request); 
  18.  
  19.     $response->headers->set('X-Frame-Options''SAMEORIGIN', false); 
  20.  
  21.     return $response
  22.   } 
  23. }

Tags: Laravel嵌入站点

分享到: