LHN: not getting to yourdomain.com/catalog?
mgcarley <[email protected]>
| Newsgroups | gmane.comp.web.oscommerce.tips |
|---|---|
| Message-ID | <ffaf6f4e74ae7caa265414f343fca2c6@osCommerce-Forums> |
This message was sent from: Tips and Tricks http://forums.oscommerce.com/viewtopic.php?p=185139#185139 ---------------------------------------------------------------- you mention that all you have is .lastlogin and the rest are folders? I'll assume then that your root directory has nothing in it and when people go to www.mydomain.com all they get is a folder list... Thus, you would need something like index.html redirecting to /catalog/default.php,[u][b] unless [/b][/u]your catalog is in the root directory of your site... This is all you would need in /index.html <html> <head> <title>Your title here</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta http-equiv="refresh" content="0;URL=/catalog/default.php"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> See how you go :)