Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想做一些事情,我使用我的域的子域重定向到一个长查询字符串。
因此,例如,如果最终目标是类似的东西www.example.com/info?user=johndoe&color=blue&type=premium,是否可以设置类似的东西user.example.com?
www.example.com/info?user=johndoe&color=blue&type=premium
user.example.com
查询字符串很长,因此太大而无法命名。我想在某个重定向的地方保存一个文件,似乎我可以使用我的 dns 注册来做一些事情,不是吗?
您不能使用 DNS 发送 HTTP 重定向。您必须使用 HTTP 服务器来执行此操作。请注意,CNAME这只会给您一个域名别名,以便foo.example.org解析为相同的 IP 地址bar.example.org。然后,该 IP 地址上的任何 Web 服务器都负责决定如何响应域名后面的路径。
CNAME
foo.example.org
bar.example.org