home page

B

Barbara

my web site is at http://www.theofficenet.com/~earl.
Instead of having the home page first it shows a page
that says the index of /~earl and then shows parent
directory and myweb5 where my page is. Why is this
happening and how can I fix it? Thank you
 
G

Guest

you need an index page within the ~earl folder to auto-redirect to the home
page in the myweb5.

the code below should be placed in a file called 'index.htm' or
'index.html' what ever you prefer does not matter

and then placed in the http://www.theofficenet.com/~earl/
folder

when you visit http://www.theofficenet.com/~earl you will now be redirected
to you main page in the myweb5 folder






<html>
<head>
</head>
<body>
<script language="JavaScript" type="text/javascript">
document.location.replace('http://www.theofficenet.com/~earl/myweb5');
</script>
</body>
</html>
 
K

Kevin Spencer

You don't have a home page. You need to create one. Ask your hosting service
what to name it.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top