因此,我们有一个国外网站,它正在从我们的国内网站拉动cookie和登录窗口小部件。由于国外站点是.de,而我们的国内站点是.com,因此它将我们的登录小部件请求视为第三方cookie。为了解决这个问题,我们在Apache2.2中使用了mod_header,但在每次请求时都会设置它。我们希望找到一种方法,让它只在设置cookie的响应上设置。下面是我们目前所拥有的。有没有办法缩小范围?
Header set P3P 'CP="This is not a P3P policy! See our privacy statement here http://www.example.co
我要进入我的第三张表格。我的桌子已经设计在下面:
第一表:用户
id (PK)
名字
电子邮件
密码
2表:User_Role
id (PK)
user_id (国外)
role_id (国外)
3表:角色
id (PK)
权威
标题
我的用户模型类代码是:
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User ext
我有这样的博客数据:
This is foreign <a href="xyz.com">link</a>, this is my site's <a href="mysite.com">link</a> and so on.
我想做的是过滤国外网站的链接,即"<a href="xyz.com">link</a>“。所以我的最终输出是:
This is foreign link, this is my site's <a href="my