PDA

View Full Version : Having a hard time with Page Wizard


leonardogalavis
05-19-2007, 12:35 PM
Hello everyone.

I am in the process of building my website. While at Page Wizard.
I designed my first page and saved it under the name of INDEX. I published it:
public_html/index
Then, I designed my second page which I named 01. I published it:
public_html/01
Then I created a link that would take everyone from INDEX to 01.
While creating the link I wrote:
www.mydomain.com/public_html/01.

It didn't work.
What am i doing wrong?

I am not too skillful at this. Could somebody help me out?

Thanks a Lot

Leonardo

Basil
05-19-2007, 01:24 PM
Anything under public_html is accessible directly from mydomain.com.

If you have a file called 'file.html' and you have it in public_html, you get to it by typing 'mydomain.com/file.html'.

leonardogalavis
05-19-2007, 01:35 PM
Thanks for answering, Basil. I've had no problem getting my website active as it goes directly to mydomain.com/index.html
The problem I am having is linking that page to the 01.html page I have created at the page wizard. So if I press enter at the index page I don't get to the 01 page.

Basil
05-19-2007, 01:49 PM
You're trying to create a hyperlink? I don't really understand what you're trying to do.

I thought you were trying to access a page you had created.

If you want the html to make a hyperlink you type <a href="http://mydomain.com/01.html">link text</a>

TinyLnk
05-19-2007, 10:27 PM
yea, you need to link to http://www.yoursite.com/01.html
and not http://www.yoursite.com/public_html/01.html

the public_html folder is the root folder for your website files.
if you link to http://www.yoursite.com/public_html/01.html then the server is looking for the file public_html\public_html\01.html so just get rid of the "/public_html" part in your link and it will be fine.