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'
热点内容