This doesn't actually change the situation. If i now enter the full url of heartofwellness.org/index.
Jamil
Main Topics
Browse All TopicsI'm having a problem that I have seen many posts but no solutions. I have a site that is 98% complete, so many hours in and yet, the home page doesn't load. I get a 404 - Component not found error when trying to view the site. I can open any page using the url of the page (problem is there whether or not sef is on) but not when I view the front page. Any suggestions would be greatly appreciated. Here are my details:
Linux, PHP Version 4.3.9, Apache, Joomla! 1.5.2
http://heartofwellness.org
http://heartofwellness.org
I have checked and doublechecked the config file, permissions are right, I moved the error.php file into the dirctory of the template as suggested elsewhere to no avail.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
This doesn't actually change the situation. If i now enter the full url of heartofwellness.org/index.
Jamil
You are sucessfully using home.html with Joomla which is working on your site exactly as you set it. Your problem is with internet browser protocol. It is the browser (IE, FIrefox, Opera, etc.) that is looking for the index file. Even search engines will look for an index file and then follows the links on this page to index your site. Without the index file, the chances are that your search engine profile will be poor.
In any website it is a essential that you use an index file. You may have noticed that every folder that came with Joomla has a mainly blank file, named index.html within it.
It exists for security reasons to prevent potential hackers from gaining useful information about your website.
Your best option is to make sure that you have a working index.php file in the root folder of your site. This is a basic principal operation of Joomla. Without it you could be exposed to many risks.
If you still want to use home.html, another option is to set a redirect on your webserver using the software provided by your hosting company. The most popular is Cpanel >>in the domains section click on Redirects. Then enter the url that you want to redirect to.
If the redirect cannot cause layout problems but search engines do not like redirects.
Hope this helps.
Objection to question withdrawal without awarding points.
The answers that I have posted here are expert and a valid solution to the asker's problem. It appears that the asker has decided not to heed advice which conforms to web development best practice. Indeed I proposed other solutions out of line with best practice, so that the asker could pursue alternative strategies.
Business Accounts
Answer for Membership
by: fearialtogPosted on 2008-07-09 at 02:30:24ID: 21961734
Your problem is that the url- /index.htm l but it usually will only display the shorthand version.
l1/DTD/xht ml1-transi tional.dtd "> 999/xhtml" > ta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> /home.html " />
http://heartofwellness.org
is actually shorthand.
When a URL like this is entered on the browser's address bar, the browser looks in the main folder of a website for a file called index.html or index.php
The browser therefore enters the full address for you http://heartofwellness.org
You have changed index file to home.html
That is why the browser cannot find it without the full path.
Change it back or upload a file called index.html with a redirect to home.html This is by far the best option especially for SEO.
Here is the code for your new index file. FTP it to your main root folder of your site - usually called public_html or htdocs and so on.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtm
<html xmlns="http://www.w3.org/1
<head>
<me
<title>Heart of Wellness</title>
<meta http-equiv="refresh" content="1;URL= http://heartofwellness.org
</head>
<body>
If for some reason you are not redirected click here
</body>
</html>