iis配置python
發布時間: 2024-02-24 10:40:27
對於
Active
Server
Pages
(ASP)
以及簡單通用網關介面
(CGI)
腳本,IIS使用
WindowsScriptingHost
解析VBScript
和
JScript
,
IIS
可以使用其他腳本解釋程序。
本文介紹如何使用
Python
作為腳本語言是選擇用於
CGI
和
ASP。在IIS管理器「網站」節點上點擊右鍵,選擇「屬性」「主目錄」,點擊「配置」按鈕,在「映射」中點擊「添加」,在對話框中將「可執行文件」設置為「/python.exe
%s
%s」,擴展名為「.py」,動作為「全部動作」,然後點擊確定。IIS現在就能解析py了嗎?編寫一個test.py文件:print
print
'Status:
200
OK'
print
'Content-type:
text/html'printprint
'Python
Sample
CGI'
print
''
print
'This
is
a
header'
print
''
#this
is
a
comment
print
'See
this
is
just
like
most
other
HTML'
熱點內容