Quote:
Originally Posted by jim844
i am new on web development, i have uploaded my web, but everytime i go to my webpage. it shows me the index page / then i have to click on the link to be able to view my page. so the question is how do i view my web page directly without go through index page /.
|
That is because you uploaded the files of your website to a subdirectory within the
public_html directory, so the folder structure looks like this:
--public_html
---subdirectory (whatever name you gave it)
----files of your website (index.html or whatever and all the other files)
To show the contents of your page when you open your URL you need to move the files from the subdirectory to the
public_html directory, so the folder structure then looks like this
--public_html
---files of your website (index.html or whatever and all the other files)