每日一句 ( 2025115 )  

Problems are not stop signs; they are guidelines.

問題的出現(xiàn)不是讓你止步,而是給你指路。———— Robert Schuller

windows中配置apache以cgi方式運(yùn)行python

首先自行安裝好apache(httpd)環(huán)境,確保apache在你系統(tǒng)中已經(jīng)能成功運(yùn)行并被訪問。 打開apache的配置文件conf/httpd.conf,找到 ScriptAlias /cgi-bin/ "/Apache22/cgi-bin/" 這是指定了當(dāng)訪問http://yourdomain/cgi-bin/時(shí)應(yīng)該映射到文件系統(tǒng)中的哪個(gè)目錄,我修改成了 ScriptAlias /cgi-bin/ "d:/programs/Apache22/cgi-bin/" 然后找到下面這段 AllowOverride None Options None ...