Webhosting Directory Index

From AAISP Support Site
Revision as of 17:48, 19 November 2021 by Reedy (talk | contribs) (Fix syntax)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Couk.png


The web server does not automatically produce a directory index, i.e. a list of files in a directory if there is no index page. However, it is simple to add a directory index to a directory using a simple script. If you load the following as index.html then it will produce a simple directory index for the directory it is in. Obviously a much more sophisticated script could be written with icons, and sub directories, and so on, and there may be such scripts available on the web in perl.

 #!/bin/csh
 echo "Content-Type: text/html"
 echo ""
 echo "<HTML>"
 echo "<TITLE>$REQUEST_URI/</TITLE>"
 echo "<BODY BGCOLOR=#FFFFFF>"
 echo "<H1>Directory listing of $REQUEST_URI/</H1>"
 echo "<PRE>"
 foreach f (*)
 echo -n "<A HREF='$f'>*</A> "
 /bin/ls -l "$f"
 end

or download: File:Directory index.zip

Webhosting Service page on our main website