Is there any site where I can just get a site and not have an index page? Most free hosts re-direct if there is no index. I want to be able to upload files and have them in one huge directory. Thanks guys!
If your host allows PHP then you could just write an index page in PHP. Something like this would do the job: $directory_list = scandir("."); echo("<table>\n"); echo(" <tr>"); echo(" <th>Filename</th><th>Size</th><th>Last Modified</th>\n"); echo(" </tr>"); foreach($directory_list as $filename) { if($filename[0] != '.' && $filename != 'index.php') { echo(" <tr>\n"); echo(" <td>$filename</td><td>".(filesize($filename)/1024)."KB</td><td>".filemtime($filename)."</td>\n"); echo(" </tr>\n"); } } echo("</table>\n"); PHP:
Also, if they allow .htaccess files then you could put one in there with this in it: Options +Indexes Code (markup):