Under normal circumstances, when someone types in your domain name, for example,
http://www.yourdomain.com, the default page that it will go to is the "index.html" file found in your main public directory.
But what if you want to customize which page/script is the default for your domain? This becomes very useful for those sites that want to point to the shop.php file that Associate-O-Matic uses or maybe a sub section inside your store.
So how do you do it?
Here are a couple ways to accomplish this...
1. Add a directive to your http.conf within the VirtualHost section related to your domain.
This directive would look something like this:
DirectoryIndex shop.php
Or if you wanted to point to some subcategory within your store:
DirectoryIndex shop.php?mode=Electronics&node=1203558
You'll need to restart your server once the http.conf change is made.
2. You can also add a similar directive to a .htaccess file and place it in your main public directory. This too will accomplish the same thing.
If anyone has any other thoughts/ideas on this particular topic please reply.
Justin