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

Is there a way to make S3 default to an index.html page? E.g.: My bucket object listing:

/index.html
/favicon.ico
/images/logo.gif

A call to www.mysite.com/index.html works great! But if one were to call www.mysite.com/ we'd either get a 403 or a REST object listing XML document depending on how bucket-level ACL was configured.

So, the question: Is there a way to have index.html functionallity with content hosted on S3?

I'm kinda thinking there isn't :(

share|improve this question

5 Answers

up vote 24 down vote accepted

Amazon S3 now supports Index Documents

The index document for a bucket can be set to something like index.html. When accessing the root of the site or a sub-directory containing a document of that name that document is returned.

You can set the index document from the AWS Management Console:

enter image description here

share|improve this answer
Had just read about this a few hours ago...cool... – Stu Thompson Feb 18 '11 at 15:59
Yeah. I posted this as soon as I heard the announcement. – Alexandre Jasmin Feb 18 '11 at 18:44
PS: Love the freehand circles ;) – Stu Thompson Mar 24 '11 at 5:57
Nice new feature. – Naszta Mar 30 '11 at 12:31
1  
unfortunately this works when it feels like it. I have this configures on one bucket that works great, and another bucket, won't work, still list the XML bullshit. – vsync Jun 19 '11 at 12:24

You can easily solve it by Amazon CloudFront link. At Amazon CloudFront you could modify the root object. You can download manager here: m1.mycloudbuddy.com/downloads.html.

share|improve this answer
Ha, I had totally forgotten about this two-year old question. Yes, CloudFront is much better at content deliver in general from S3. – Stu Thompson Dec 18 '10 at 8:13

I would suggest reading this thread from 2006 (On Amazon web services developers connection). It seems there's no easy solution to this.

share|improve this answer

Yes. using AWS Cloudfront lets you assign a default file.

share|improve this answer

you can do it using dns webforwards and cloaking. just forward to the complete path of the index.html

www.example.com forwards to http://www.example.com.s3.amazonaws.com and make sure you cloak the output.

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.