| > What I need is for the filenames to be 20580.html
> It seems like it should be simple.
>
> This is where I am at: %h%p/%n%[read::::].%t
> This produced a file named: index20580.html
>
> Where did the "index" part come from? I don't want
"index" comes from %n in your structure definition, which is caused by
"index.cgi".
To remove that "index" part completely would be possible and looking at your
BBS the side-effects should be minimal: files/pages that are mirrored but not
"index.cgi?read=XXX" are going to have odd filenames (this includes any
images).
You could try a structure like:
%h%p/%[read:::file:file].%t
Then you should get:
file.htm (the start URL)
file-2.htm (maybe search page)
file-3.htm (something else)
file-4.gif
20580.htm (the threads)
20579.htm
etc
| |