您的位置:首页技术文章
文章详情页

python - 用Mac自带的Apache服务器开发CGI,在浏览器直接输出纯文本了?求解

【字号: 日期:2022-07-18 18:49:21浏览:38作者:猪猪

问题描述

httpd.conf文件页配置安装教程http://blog.csdn.net/dabiaoya...一步一步的来的文件权限如下

GhostClock:WWW ghostclock$ ls -al Test.py -rwxr-xr-x 1 ghostclock staff 410 May 9 20:40 Test.pyGhostClock:WWW ghostclock$

在浏览器输入localhost/Test.py后,打印的是纯文本

#!/usr/bin/env python# -*- coding: UTF-8 -*-print 'Content-type:text/html'print # 空行,告诉服务器结束头部print ’<html>’print ’<head>’print ’<meta charset='utf-8'>’print ’<title>Hello Word - CGI 程序!</title>’print ’</head>’print ’<body>’print ’<h2>Hello Word! 第一CGI程序</h2>’print ’</body>’print ’</html>’

不知道我哪里环境没配置好,求解

问题解答

回答1:

添加了AddHandler cgi-script .py了吗, 添加之后记得重启apache

标签: Python 编程