1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<META NAME="GENERATOR" CONTENT="SGML-Tools 1.0.9">
<TITLE>Apache Web Server: Script Alias</TITLE>
<LINK HREF="apache-11.html" REL=next>
<LINK HREF="apache-9.html" REL=previous>
<LINK HREF="apache.html#toc10" REL=contents>
</HEAD>
<BODY>
<A HREF="apache-11.html">Next</A>
<A HREF="apache-9.html">Previous</A>
<A HREF="apache.html#toc10">Contents</A>
<HR>
<H2><A NAME="s10">10. Script Alias</A></H2>
<P>Provides the location for CGI programs. This should be two paths,
separated by whitespace. The first path is the path used in URL that
triggers execution of a CGI program; the second path is where those CGI
programs are stored in the real filesystem.
<P>For example, if the script alias is <CODE>/cgi-bin/home/httpd/cgi</CODE>
then a request for
<CODE>http://your.webserver.com/cgi-bin/feedback.py</CODE> would execute and
return the output of <CODE>/home/httpd/cgi/feedback.py</CODE>.
<P>
<P>
<HR>
<A HREF="apache-11.html">Next</A>
<A HREF="apache-9.html">Previous</A>
<A HREF="apache.html#toc10">Contents</A>
</BODY>
</HTML>
|