Questions tagged «header»

不推荐使用此标签,因为它缺乏区分能力。请改用更具体的标签,例如:html-heading,email-header等。

2
请求标题中的Origin evil.com
我试图将表单数据发送到Web服务,但是在Chrome DOM的“网络”中的“请求标头”下方,我得到了来源“ evil.com”和引荐来源网址“ localhost:8080”。 Accept:application/json, text/plain, */* Accept-Encoding:gzip, deflate Accept-Language:nb-NO,nb;q=0.8,no;q=0.6,nn;q=0.4,en-US;q=0.2,en;q=0.2 Connection:keep-alive Content-Length:91 Content-Type:application/x-www-form-urlencoded; charset=UTF-8; Host:office.insoft.net:9091 Origin:http://evil.com/ Referer:http://localhost:8080/ User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2230.0 Safari/537.36 我想更改为另一个来源,“ localhost:8080”将是最佳来源。 我该如何解决这个问题?

6
zlib标头是什么样的?
在我的项目中,我需要知道zlib标题是什么样的。我听说这很简单,但是找不到zlib标头的任何描述。 例如,它是否包含一个幻数?
70 header  structure  zlib 

11
模拟403错误页面
我知道您可以发送一个标头,告诉浏览器禁止此页面,例如: header('HTTP/1.0 403 Forbidden'); 但是,如何显示在服务器上为此类错误创建的自定义错误页面呢? 默认情况下,仅发送标题会显示白页,但我记得有一阵子回读,您可以使用客户错误页面。有人知道吗



9
固定了带水平滚动条和垂直滚动条的标题表
我一直试图找出这个问题,我有html / css粘页眉+滚动条。我们正在创建一个程序,当容器大小达到某个点时(取决于用户的分辨率),该程序需要滚动条才能显示。 我在表的第二列上强制使用最小宽度,因此表在特定点处停止减小,并强制容器保持在特定宽度。容器上的溢出显示水平滚动条。一切正常。一旦我添加了第二个滚动条进行垂直滚动,事情就变得一团糟。有人对此问题有解决方案吗?我想在.table-body上有一个垂直滚动条,但是滚动条必须在externalcontainer上可见。 固定头表是否有很好的html / css解决方案?我已经搜索了一个星期,但是只能找到这种行为的jQuery插件。 这是我当前的HTML: <!DOCTYPE html> <html> <head> <title>fixed header prototyping</title> <link rel="stylesheet" href="css/style.css"> </head> <body> <div class="outer-container"> <!-- absolute positioned container --> <div class="inner-container"> <div class="table-header"> <table id="headertable" width="100%" cellpadding="0" cellspacing="0"> <thead> <tr> <th class="header-cell col1">One</th> <th class="header-cell col2">Two</th> <th class="header-cell col3">Three</th> <th class="header-cell col4">Four</th> …
68 html  css  header  html-table  fixed 

3
如何在Apache 2.4和PHP 7.1的Chrome中解决跨站点Google Analytics(分析)Cookie“ SameSite = None”警告?
我客户的网站在Chrome中收到这些SameSite Cookie警告。我到处搜寻了,但警告却消失了。这些Cookie是由于Wordpress网站上的Google广告转化跟踪所致。由于兼容性原因,该站点位于由运行PHP 7.1的DreamHost托管的Apache / 2.4.7(Ubuntu)上。在我的.htaccess文件中,我尝试添加: Header always edit Set-Cookie (.*) "$1; SameSite=None" 我尝试了 Header edit Set-Cookie ^(.*)$ $1;HttpOnly;Secure ...我尝试了 Header always edit Set-Cookie (.*) "$1; SameSite=None;Secure" 以及许多其他组合,包括SameSite = Lax 一本指南建议使用PHP 7.2及以下版本: header('Set-Cookie: cross-site-cookie=bar; SameSite=None; Secure'); 但这给了我一个500 Internal Server Erorr。 但是我仍然遇到以下三个错误: 设置了与跨站点资源关联的cookie,但未设置该SameSite属性。如果将来的Chrome浏览器版本将cookie设置为SameSite=None和,则仅会提供带有跨站点请求的cookie Secure。您可以在“应用程序”>“存储”>“ Cookies”下的开发人员工具中查看Cookie,并在和处查看更多详细信息。 (索引):1 设置了与http://doubleclick.net/上的资源关联的cookie ,SameSite=None但未设置Secure。Chrome的未来版本将仅提供SameSite=None带有标记的cookie Secure。您可以在“应用程序”>“存储”>“ Cookies”下的开发人员工具中查看Cookie,并在https://www.chromestatus.com/feature/5633521622188032上查看更多详细信息。 (索引):1 设置了与http://google.com/上的资源关联的cookie …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.