Specify which file to use via the URL
The program knows which file you want to use by looking at its URL.
If the program can't find the file you asked for, it will fall back to the
default filename you hard coded when you installed it.
To tell random.cgi to use a particular file, take its URL and
insert random.cgi's URL before it. If you installed random.cgi as
"/cgi-bin/random.cgi" and your file is "/random/urls.txt", you'll use
"/cgi-bin/random.cgi/random/urls.txt" as the main URL.
The files contain lists of URLs
It's easy to make them! Put each URL on a line by itself. If you want
a particular URL to have a better chance of coming up than the others,
you can list it multiple times.
Here's an example: |
 |
# this is a comment line and will be ignored
http://www.google.com/
http://www.altavista.com/
http://www.lycos.com/
http://www.hotbot.com/
|
|