gpt4 book ai didi

reactjs - 在 Gatsby 中将 HTTP 流量重定向到 HTTPS

转载 作者:行者123 更新时间:2023-12-04 01:05:26 26 4
gpt4 key购买 nike

我想将 HTTP 流量重定向到 HTTPS,因为这是 PWA 的 Lighthouse 要求。我的网站是用 Gatsby 构建的。

我发现了各种插件,例如下面的插件,它们似乎暗示答案来自于修改 .htaccess 文件。

https://www.gatsbyjs.org/packages/gatsby-plugin-htaccess/

对于上面的插件,我尝试了如下配置,没有通过PWA审核:

{
resolve: 'gatsby-plugin-htaccess',
options: {
RewriteBase: '/custom/',
https: true,
www: true,
SymLinksIfOwnerMatch: true,
host: 'av-site.com',
redirect: [
'RewriteRule ^not-existing-url/?$ /existing-url [R=301,L,NE]',
{
from: 'http:av-site.com',
to: 'https:av-site.com',
},
],
},
},

谁能帮帮我?谢谢!

最佳答案

确保 gatsby-config.js 中的 siteURL 是 https

module.exports = {
siteMetadata: {
title: `example`,
description: ``,
author: `me`,
siteUrl: `https://example.com`
},

关于reactjs - 在 Gatsby 中将 HTTP 流量重定向到 HTTPS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57044036/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com