gpt4 book ai didi

vb.net - 如何使开放图链接与 301 重定向一起使用

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:35:51 25 4
gpt4 key购买 nike

我在 VB.NET 应用程序上使用友好的 URL,我在社交媒体上共享 URL,图像预览工作正常。链接可以分享如下:

example.com/news/123

example.com/news/123/hello-this-is-an-article

为了避免为同一篇文章共享两个版本的 URL,我在 Pre_load 上创建了一个 301 redirect 以将第一个链接重定向到第二个相应的链接。这样,我确保每个访问的 URL 都在末尾包含文章标题。

在我应用此逻辑后,末尾没有文章标题的 URL(第一个 URL)不再在社交媒体上显示图像预览。 Twitter 卡片验证器Facebook 开放图调试器 表示存在 301 重定向并且未找到元标记。

下面是在 Pre_Load 页面上运行的代码:

'Comparing URL title with the actual Article title

If strURLTitle <> strArticleTitle Then
'URL article title either changed or does not exist

Response.Status = "301 Moved Permanently"
Response.AddHeader("Location", "example.com/news/{ID-in-the-URL}/article-title")

End If

这是我使用的示例 HTML:

<meta name='author' content='test' />
<meta name='keywords' content='test,test,test' />
<meta name='description' content='test test test' />
<meta itemprop='name' content='test' />
<meta itemprop='description' content='test' />
<meta itemprop='image' content='https://example.com/img.jpg' />
<meta property='og:title' content='test' />
<meta property='og:description' content='test test test' />
<meta property='og:image' content='https://example.com/img.jpg'' />
<meta property='og:image:secure_url' content='https://example.com/img.jpg'' />
<meta property='og:image:width' content='780' />
<meta property='og:image:height' content='439' />
<meta property='og:site_name' content='test' />
<meta property='og:url' content='https://example.com/news/3710/here-is-the-title' />
<meta property='og:type' content='article' />
<meta property='og:locale' content='ar_AR' />
<meta name='twitter:card' content='summary' />
<meta name='twitter:site' content='https://example.com' />
<meta name='twitter:title' content='test' />
<meta name='twitter:description' content='test test test' />
<meta name='twitter:image' content='https://example.com/img.jpg' />
<base href='https://example.com' />

问题:

在 Twitter Card Validator 上测试链接(没有文章标题)会产生以下日志:

INFO: Page fetched successfully
WARN: No metatags found
WARN: this card is redirected to
news/123/hello-this-is-an-article

在 Facebook 调试器上测试链接(没有文章标题)会产生以下日志:

Response Code 400

Fetched URL example.com/news/123

Canonical URL
example.com/news/123/hello-this-is-an-article

Redirect Path
Input URL example.com/news/123 301 HTTP
Redirect example.com/news/123/hello-this-is-an-article

有没有办法让开放图调试器逃避 301 重定向或显示正确的结果,即使我共享的链接末尾没有标题?

最佳答案

由于我在 URL 中使用了阿拉伯字符,所以我需要对 URL 进行编码以使其在 Facebook 和 Twitter 上运行。

修复:

Response.Status = "301 Moved Permanently"
Response.AddHeader("Location", "example.com/news/{ID-in-the-URL}/" & HttpUtility.UrlEncode(article-title))

<meta property='og:url' content='https://example.com/news/3710/encoded-url' />

另一个修复:

使用规范的 URL:

<link rel="canonical" href="https://example.com/news/3710/encoded-url" />

关于vb.net - 如何使开放图链接与 301 重定向一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54160345/

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