Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are the benefits of hosting your images on a subdomain such as "img.domain.com"? If you're not on a CDN is there any real benefit to this?

Update

So doing this with CSS and JS files would also serve the same purpose?

share|improve this question

2 Answers

up vote 8 down vote accepted

It can trick browsers to download with more 'pipes' of bandwidth. Say, the maximum of same downloads on a domain was three, hosting the images on another subdomain would effectively increase that to six.

The browser also doesn't have to send and receive cookies in the header, so it will go faster in that regard also.

share|improve this answer
Also works better for SEO. – TheBlackBenzKid Dec 29 '11 at 17:58

You can direct the subdomain to a different server, that is running a lighter weight web daemon such as nginx or lighthttpd. Then, you are not burdening the main, number crunching server with all the extra requests for static images.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.