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

The person I use for hosting my website has told me that my website will look like this in the browser.

http://www.website.domain/folder/index.html

I would prefer the site to look like this:

A - http://www.website.domain/

or

B - http://www.website.domain/index.html

I am almost certain this is possible, and they just do not know how to set some kind of file path. This is a one page html site and the entire site is contained within 1 folder. So I have decided to go and find a company that will host my site (i.e. 1and1.com).

First, how do I set up web hosting for either of my preferred ways? What is the preference among web developers on preference A or B?

Second, what would be the consequences of adding a second folder containing another website. Would the second website still be able to have a URL of style A or B without interfering with the first website?

share|improve this question

closed as off topic by bmargulies, Diodeus, PeeHaa 埽, Kay, gpoo Jan 17 at 1:35

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 1 down vote accepted

Just configure your web server's document root for each vhost accordingly. If your web host won't do this for you, or doesn't let you do it... find a new web host.

share|improve this answer
-1 'eh? Got a reason to add to the discussion? Or are you the type that likes wasting your time? – Brad Jan 16 at 21:30
thanks @Brad, btw I didn't dvote ya... sorry – Justin Jan 16 at 21:33
@Justin, No worries, it's quite the common occurrence on StackOverflow. I have no issues with the folks that downvote things and explain themselves, for everyone's benefit. I do find it amusing when people downvote correct answers with no explanation. – Brad Jan 16 at 21:34
Is there a preference between the two styles of urls displayed in the address bar? – Justin Jan 16 at 21:48
@Justin, It is a matter of preference, but for some SEO benefit, your URL should align with the content on the page. index.html doesn't say anything about the content, and since it is generally a default document anyway, I recommend leaving it off. – Brad Jan 16 at 22:45

There's a good tool called mod_rewrite for that.

Getting started: http://wettone.com/code/clean-urls

Complex examples:http://httpd.apache.org/docs/2.0/misc/rewriteguide.html

share|improve this answer
Doubtful I can use this, as I am not sure what the web server would be from the web hosting company. – Justin Jan 16 at 21:51

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