301 status code means that the requested resource has been permanently moved to a new URL. All future requests should use the new address.
The browser will automatically redirect the user to the new address, and search engines will update their indexes.
200 status code is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.
The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.
GET / HTTP/1.1 Host: yii.com Accept: */* User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>年纪大了</title> <link rel="icon" href="/the-end.png" type="image/x-icon"> <style> body { max-width: 55rem; margin: 0 auto; padding: 1rem; font-size: large; font-weight: lighter; font-family: sans-serif; line-height: 2rem; } b { font-size: larger; } code { display: inline-block; background-color: #f8f9fa; padding: 0.2rem 0.4rem; border-radius: 0.25rem; margin-top: 2rem; } footer { margin-top: 1rem; } .icon { width: 3rem; height: 3rem; } @media (prefers-color-scheme: dark) { body { background-color: #333; color: #fff; } code { background-color: #444; } footer { color: #ccc; } a:visited { color: #ccc; } } </style> </head> <body> <img class="icon" src="/the-end.png"><br><br> <b>年纪大了</b>,拥有的东西越来越多,难以割舍的也越来越多。<br> 你的线上资产(域名、加密货币),微信支付宝、银行、股票账户。<br> 如何在你离开后,让这些资产有序地交接给你的家人?<br> <i>慢慢要考虑这个问题了。</i><br> 配置好你的线上平台、密码管理器的信任联系人。<br> 为你的家人留下一份线上<b>资产清单</b>。<br> 域名多<b>续费</b>几年,<br> 给他们时间学习如何处理。<br> 接下来的时间考虑如何 <code>好好生活</code><br> <footer><small>2024 年 10 月 06 日 © <a href="https://lifelonglearn.ing">奶爸 · 终身学习</a></small></footer> </body> <script> console.log(`%c _ _ _ __ __ _(_) |__ __ _ | '_ \\ / _\` | | '_ \\ / _\` | | | | | (_| | | |_) | (_| | |_| |_|\\__,_|_|_.__/ \\__,_| `, 'color: #007bff; font-size: 1.5rem;'); </script> </html>