/.well-known/traffic-advice" failed (2: No such file or directory), client: 关于这个问题

网站建设 百科知道 英语/.well-known/traffic-advice" failed (2: No such file or directory), client: 关于这个问题已关闭评论115阅读模式
遇到了这个错误日志:。。。。。/.well-known/traffic-advice" failed (2: No such file or directory), client: 。。。。。以下是折腾记录。

问题分析

  1. 请求路径:
    • 客户端请求了 /.well-known/traffic-advice,这是一个标准的 URI 路径,通常用于提供特定的服务或协议。
  2. 文件不存在:
    • 服务器未能找到该路径下的文件,导致出现错误。

解决方案

  1. 创建缺失的文件:
    • 如果您需要这个文件来支持某些功能(例如,流量建议),请创建一个空的或包含必要内容的文件:
      touch /www/wwwroot/网站目录/.well-known/traffic-advice
  2. 检查配置:
    • 确保您的服务器配置允许访问 /.well-known/ 路径。某些情况下,可能需要在 Nginx 或 Apache 配置中进行调整,以允许访问该目录。
  3. 忽略无关请求:
    • 如果这个请求不影响您的网站功能,并且您不需要处理这种类型的请求,可以选择忽略这些错误。定期监控日志,以确保没有其他重要问题。
  4. 设置重定向(可选):
    • 如果您希望将此请求重定向到其他有效的 URL,可以在服务器配置中添加重定向规则。

解决步骤

  1. 创建 traffic-advice 文件:
    • /.well-known/ 目录下创建一个名为 traffic-advice 的文件,内容如下:
      [{
        "user_agent": "prefetch-proxy",
        "google_prefetch_proxy_eap": {
          "fraction": 1.0
        }
      }]
      
  2. 设置 MIME 类型:
    • 您需要确保服务器返回正确的 MIME 类型。根据您使用的服务器类型,您可以选择以下配置:
    • 对于 Apache: 在 .htaccess 文件中添加以下行:
      RewriteRule ^\.well-known/traffic-advice$ - [T=application/trafficadvice+json,END]
      
    • 对于 Nginx: 在 Nginx 配置文件中添加以下内容:
      location /.well-known/traffic-advice {
          types { } default_type "application/trafficadvice+json; charset=utf-8";
      }
      

这些是参考修改的原文:

Googlebot with name "Chrome Privacy Preserving Prefetch Proxy" tries to find instructions if it can preload your website for the user surfing on Chrome (Chrome thinks, for example, the link to your website is going to be clicked on).

名为“Chrome Privacy Preserving Prefetch Proxy”的 Googlebot 会尝试查找说明,以确定它是否可以为在 Chrome 上冲浪的用户预加载您的网站(例如,Chrome 认为指向您网站的链接将被点击)。

Basically what we, webmasters, are interested in is to get rid of 404s caused by this feature. The most simplest way is to create the file traffic-advice (without any extension) in the directory .well-known with the content:
基本上,我们网站管理员感兴趣的是摆脱由此功能引起的 404。最简单的方法是在 .well-known 目录中创建文件 traffic-advice(不带任何扩展名),其内容为:

[{
  "user_agent": "prefetch-proxy",
  "google_prefetch_proxy_eap": {
    "fraction": 1.0
  }
}]

Problem is that the bot requires a specific MIME type. On Apache, you can add these lines to the main .htaccess file:
问题是机器人需要特定的 MIME 类型。在 Apache 上,您可以将以下行添加到主 .htaccess 文件中:

RewriteRule ^\.well-known/traffic-advice$ - [T=application/trafficadvice+json,END]

On Nginx you can alter your config with these lines:
在 Nginx 上,您可以使用以下几行更改您的配置:

# Private Prefetch Proxy
# https://developer.chrome.com/blog/private-prefetch-proxy/
location /.well-known/traffic-advice {
   types { } default_type "application/trafficadvice+json; charset=utf-8";
}

More info or advanced Nginx config can be found from the source.
更多信息或高级 Nginx 配置可以从中找到。


如果nginx配置参数遇上这样的问题:ERROR: nginx: [warn] the "listen ... http2" directive is deprecated, use the "http2" directive instead in /www/server/panel/vhost/nginx。。。。。。。。。。

可以参考修改:

问题 1:废弃的 listen ... http2 指令
在较新的 Nginx 版本中,listen ... http2 指令已被废弃,应该使用 http2 指令来代替。例如,将以下配置:

listen 443 ssl http2;

修改为:

listen 443 ssl;
http2 on;

你可以在以下文件中(相关网站的配置文件)进行相应的修改:

/www/server/panel/vhost/nginx/相关网站1.conf

/www/server/panel/vhost/nginx/相关网站2.conf

问题 2:location 指令的位置不正确
location 指令不能直接放在 nginx.conf 文件中,它必须位于 server 块内。确保你的 location 指令正确嵌套在 server 块中。例如,以下配置是正确的(只是参考位置):

server {
    listen 80;
    server_name example.com;

    location / {
        root /var/www/html;
        index index.html index.htm;
    }
}

确保在你的 /www/server/nginx/conf/nginx.conf 文件中将 location 指令放在 server 块内。

完成配置更改后,建议重启或重新加载 Nginx 以使更改生效。

 
  • 本文由 米粒在线 发表于 2024年12月30日10:24:19
  • 转载请务必保留本文链接:https://www.miliol.org/129264.html
实用软件

winsxs太大了怎么清理

win系统盘空间越来越少,发现winsxs超大。winsxs太大了,怎么清理呢?显然直接删除这个winsxs文件夹是不行的,这是系统文件夹,直接删除会造成系统损坏。那怎么办,总不能看着...
网站建设

网站速度很慢?使用 WordPress 短时缓存(Transients)来优化数据库查询和 HTTP 响应!

每个人都想要一个速度很快的网站,网站速度越快,用户停留和点击页面或购买产品的时间就越长,加快网站速度的方法之一是开启缓存,而缓存背后的逻辑就是存储信息,更具体一点说,就是找到一个比连接数据库更快的存储...