gpt4 book ai didi

SEO 问题并从 URL 中删除尾部斜杠

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

我们有一个用 ASP.NET 编写的网站。当您打开以下页面时:

http://concert.local/elki/

您可以在末尾看到斜杠“/”。我们需要删除它以便:

http://concert.local/elki

我已经尝试了一些方法来让它工作,但没有用。例如,当我在 Global.asax.cs 文件中添加以下代码时:

protected void Application_BeginRequest(Object sender, EventArgs e)
{
if (HttpContext.Current.Request.Url.ToString().Contains("http://concert.local/elki/"))
{
HttpContext.Current.Response.Status = "301 Moved Permanently";
HttpContext.Current.Response.AddHeader("Location", Request.Url.ToString().ToLower().Replace("http://concert.local/elki/", "http://concert.local/elki"));
}
}

出现以下错误:

Firefox has detected that the server is redirecting the request for this address in a way that will never complete.

This problem can sometimes be caused by disabling or refusing to accept cookies.

还有如下代码:

<asp:Content ID="Content1" runat="server" ContentPlaceHolderID="ContentHead">
<link rel="canonical" href="http://concert.local/elki" />
</asp:Content>

这会将规范的内容放在页眉中。

如何获取以下网址:

http://concert.local/elki

?

最佳答案

查看此答案:url trailing slash and seo

它基本上是说 Google 更喜欢结尾的斜杠。只要始终如一地编码,您应该没问题。

关于SEO 问题并从 URL 中删除尾部斜杠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19419147/

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