是否可以将 URL 重定向到另一个 URL(仅供客户端使用)。例如。
假设我在 URL 浏览器中输入此内容https://google.com/this_page_does_not_exist/it_doesnt_exist
它只是给我一个 404 页面
是否可以在本地为客户端覆盖此设置,例如 DNS 之类的?这样,如果我尝试查找https://google.com/this_page_does_not_exist/it_doesnt_exist我可以进行修改并告诉它将我带到另一个地址吗?
因此,不要让服务器处理重定向,而是覆盖它并让客户端完全控制该部分。
类似于 hosts 文件,但是它与 URL 匹配,如果匹配则转到设置值。
例子:
https://google.com/this_page_does_not_exist/it_doesnt_exist https://google.com
这样,每当为设置它的客户端查找此“https://google.com/this_page_does_not_exist/it_doesnt_exist”时,它都会将它们带到https://google.com