Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

vijay chekuri
1,791 Pointsgetting index of/ line when i type my (http://vijayportfolio.com) website name. can someone help me with this?
i did design a simple portfolio website while watching these tutorials. i did upload my files to server and my domain name is " vijayportfolio.com ". i could not find my website and i could not find my profile pic inside. i did try "../img/vijay1.jpg" and "img/vijay1.jpg"
3 Answers

Ted Sumner
Courses Plus Student 17,967 PointsThis is your code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<title>Index of /</title>
</head>
<body>
<h1>Index of /</h1>
<ul><li><a href="portfolio/"> portfolio/</a></li>
</ul>
</body></html>
You have an extra / just before your closing tags, but otherwise it is displaying what you told it to.

Ted Sumner
Courses Plus Student 17,967 PointsFollowing your portfolio link in your nav is blocked by Norton as a known malicious site. The second time I tried it worked fine.
I don't know your folder structure, but you probably need at least one ../ from what I can see from looking at the page source. You may also need a folder before img. Double check your path in that link.
I would also take down the email address from your contact page. There are things roaming the web to glean emails for spammers.
Less is not a server side process. It is JavaScript browser based processor.

vijay chekuri
1,791 Pointsi do have an index.html file and i did save my image in image folder ..

Ted Sumner
Courses Plus Student 17,967 PointsThe first code I posted is what your index.html file on your web site has. The main site is in the portfolio file and not seen as your home page.
Ted Sumner
Courses Plus Student 17,967 PointsTed Sumner
Courses Plus Student 17,967 PointsWhen I follow your portfolio link I find a much better site. I think your problem is that the default home page is index.html. This is the code from your portfolio link:
I am not sure that the hosting2 code will work since it is outside the html tags.