|
|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 Ael 于 2019-4-6 01:24 编辑
安装了apache服务器,在浏览器打开http://localhost/显示it work,但是打开http://localhost/D:/Apache24/cgi-bin/hello.py显示
Forbidden
You don't have permission to access /D:/Apache24/cgi-bin/hello.py on this server.
附代码
#!D:\Python\python-3.7.2-amd64.exe
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! </h2>')
print ('</body>')
print ('</html>')
按引擎说的改文件755权限也不行,论坛朋友棒棒忙,弄了很久也没好 |
|