gpt4 book ai didi

.htaccess 将 "/"重定向到非 "/"是 500 内部服务器错误

转载 作者:行者123 更新时间:2023-12-05 03:46:05 25 4
gpt4 key购买 nike

Google 已将我不再存在的旧 URL 编入索引。例如,当有人点击来自 Google 搜索的旧链接时,将显示 500 服务器错误。

我的旧网址是 https://example.org/idn-poker/,最近更改为 https://example.org/idn-poker .

问题是尾随 /

我该如何解决这个问题?

我的.htaccess:

<IfModule mime_module>
AddHandler application/x-httpd-ea-php72 .php .php7 .phtml
ErrorDocument 404 https://example.org
RewriteEngine on
RewriteCond %{THE_REQUEST} \.html [NC]
RewriteRule ^(.*)\.html$ /$1 [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html [L]
</IfModule>

最佳答案

如果您的网址已更改(从斜杠后缀变为无斜杠后缀),那么您应该从旧网址 301 重定向到新网址,否则 Google 将继续索引旧网址,而您在内部链接到新网址 -从而造成重复内容问题。因此,这是保持 SEO 的必要步骤。

例如:

# Redirect to remove trailing slash on URLs (excluding directories)
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.+)/$ /$1 [R=301,L]

但是,您的指令还有其他问题...

ErrorDocument 404 https://example.org

这会导致任何本来会触发 404 的 URL,被 302 重定向到您的主页。这通常会带来糟糕的用户体验。它很可能被谷歌视为 soft-404,所以这样做没有 SEO 优势。它还会用大量 302 污染您的服务器日志,并使对您服务器的请求加倍。

您应该配置一个自定义 404 页面,向您的用户发送有意义的消息,例如:

ErrorDocument 404 /error-documents/my-custom-404.html

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html [L]

REQUEST_FILENAME 起请求带有尾部斜杠的 URL 时,这些指令将导致重写循环(500 错误)与 $1 的值不同反向引用。因此,虽然条件可能为真,但随后的重写无效。参见 my answer到以下问题 ServerFault 并提供更多相关信息:https://serverfault.com/questions/989333/using-apache-rewrite-rules-in-htaccess-to-remove-html-causing-a-500-error

可以通过使用尾部斜杠重定向 URL 来解决直接问题(如上所述),但是,对于其他(可能无效的)URL 仍可能发生重写循环。

在附加 .html 时,也不需要检查请求是否映射到目录或文件但确实作为文件存在。延期。当只需要一个条件时,您所做的工作是原来的 3 倍:

RewriteCond %{DOCUMENT_ROOT}/$0\.html -f
RewriteRule .+[^/]$ $0.html [L]

正则表达式 .+[^/]$简单地避免匹配以尾部斜杠结尾的目录,从而避免在条件中进行额外的文件系统检查。

$0反向引用包含完整匹配(我们知道它不以斜杠结尾)。

此重写应上面的外部重定向一起使用,该重定向从非目录中删除尾部斜杠。

<IfModule mime_module>

将所有指令包含在这个 <IfModule> 中 wrapper 有问题。如果 mime_module 不可用,那么您的网站就会无提示地失败。 mod_mime 不可用的可能性很小 - 如果失败,收到错误通知不是更好吗?

总结:

AddHandler application/x-httpd-ea-php72 .php .php7 .phtml

ErrorDocument 404 /error-documents/my-custom-404.html

RewriteEngine On

# Redirect to remove trailing slash on URLs (excluding directories)
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.+)/$ /$1 [R=301,L]

# Redirect to remove ".html" extension if requested directly
RewriteCond %{THE_REQUEST} \.html
RewriteRule (.+)\.html$ /$1 [R=301,L]

# Append .html extension
RewriteCond %{DOCUMENT_ROOT}/$0\.html -f
RewriteRule .+[^/]$ $0.html [L]

关于.htaccess 将 "/"重定向到非 "/"是 500 内部服务器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65452805/

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