无 Cookie 子域
我有一个圆顶的名字。 www.abc.com
,我想加速 cookie 域中的所有图像和静态内容。
我需要做什么?
我想创建名为 static.abc.com 的新子域,但当时这两个域也带有 cookie。
我是用于托管的 dotnet 面板用户。
技术是.net
I have one dome name. www.abc.com
and i want to speedup all images an d static content from cookies domain.
what i require to do with that?
i want to create new sub domain with name static.abc.com but that time also cookie coming with both domain.
i am user dotnet panel for hosting.
technology is .net
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有两种方法可以实现此目的。您可以为 www.abc.com 的 FQDN(完全限定域名)设置 cookie,但这会将 cookie 限制为仅 www.abc.com。这可能比您想要的更严格。
更常见的解决方案是为无 cookie 托管注册一个完全独立的域。许多网站已经使用了这种方法。
There are two ways to accomplish this. You could set the cookie for FQDN (fully-qualified domain name) of www.abc.com, but this would restrict the cookies to just www.abc.com. This may be stricter than you want.
The more common solution it to register a completely separate domain for cookieless hosting. This is used by many websites already.
创建 Cookie 时,将其
Domain
属性设置为".abc.com"
,这样 Cookie 将由www.abc.com 共享
和static.abc.com
子域。When you create a cookie, set it's
Domain
property to".abc.com"
, that way the cookie will be shared by both thewww.abc.com
andstatic.abc.com
subdomains.