CentOS上的Python初学者。
我按照说明安装了Python: https://www.digitalocean.com/community/tutorials/how-to-set-up-python-2-7-6-and-3-3-3-on-centos-6-4
在我的httpd.conf中添加了以下内容:
<Directory "/var/www/html/financial">
AllowOverride None
Options -Indexes FollowSymLinks +ExecCGI
AddHandler cgi-script .py
Order allow,deny
Allow from all
</Directory>
我的根目录中有我的hello world文件:
-rwxrwxr-x 1 jeremy www 42 Jun 9 20:29 index.py
index.py看起来像这样:
#!/usr/bin/python
import sys
sys.stdout.write("Content-Type: text/html\r\n\r\n")
print "Hello, World!"
尝试加载页面时出现内部服务器错误。
不幸的是,我的系统管理技能大约是2/10,所以我现在很困惑。