
September 19th, 2000, 06:31 PM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
>>ScriptAlias /fom/ /cgi-bin/fom.cgi?Is this correct?
No.
ScriptAlias /cgi-bin/ /home/httpd/my-cgi/
Then any files in your /home/httpd/my-cgi/ are treated as CGI, even without the extension.
The first part /cgi-bin/, that is the visible part within your URL. i.e. http://www.domain.com/cgi-bin/
So a script named "myscript" at /home/httpd/my-cgi/myscript is the same script as http://www.domain.com/cgi-bin/myscript.
|