need help

Status
Not open for further replies.

gomarc

Member
Messages
516
Reaction score
18
Points
18
If your folder does not have an index.html ( or index.php) you will get a list of what’s in that folder.
So the simplest solution is to just add an index.html file there.
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
Are you saying that you want your vistors to be able to enter
www.url.com
and get sent to an index page in
www.url.com/zzzz/ ?

Any reason you didn't just put the files in
/public_html
instead of
/public_html/zzzz ?
 

gomarc

Member
Messages
516
Reaction score
18
Points
18
If you want to redirect your visitors
From: www.url.com
To: www.url.com/zzzz/

You can add this index.html file to your public_html folder


HTML:
<html>
<head>

<meta http-equiv="Refresh"
content="0;url=http://www.url.com/zzzz/">

</head>
<body>
</body>
</html>
 
Status
Not open for further replies.
Top