html 嵌入式Google Analytics:修复Nginx上的“利用浏览器缓存”警告

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 嵌入式Google Analytics:修复Nginx上的“利用浏览器缓存”警告相关的知识,希望对你有一定的参考价值。

server {
    
    ### ...
    
    location = /analytics.js {
        # Proxy to google-analytics.com
        proxy_pass https://www.google-analytics.com;
        
        # Custom expires time
        expires 1y;
    }
    
    ### ...
}
<html>
    
    <!-- ... -->
    
    <!-- Embed analytics.js as local file -->
    <script src="/analytics.js"></script>
</html>

以上是关于html 嵌入式Google Analytics:修复Nginx上的“利用浏览器缓存”警告的主要内容,如果未能解决你的问题,请参考以下文章

将 Electron 与 Google Analytics 嵌入 API 一起使用

Google Analytics 嵌入 API 服务器端授权未使用 C# 呈现图表

Google Analytics搜索指标

2.3.6Google Analytics高级应用——事件跟踪

html Google Analytics(分析) - 更多信息:https://developers.google.com/analytics/devguides/collection/analyt

html Google Analytics异步跟踪代码示例