免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 7111 | 回复: 9
打印 上一主题 下一主题

apache+webpy访问直接显示源代码 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-06-11 13:32 |只看该作者 |倒序浏览
本帖最后由 幻想曲yibin 于 2010-06-11 16:09 编辑

刚配置好apache+web.py
代码也就是hello world
用web.py的调试服务器是正常的,
但通过apache访问,就直接显示了code.py的源代码,这怎么弄一下?
code.py的代码:
  1. import web
  2. urls = (
  3.     '/index/?','Index',
  4.     '/(.*)', 'hello',
  5.    
  6. )
  7. app = web.application(urls, globals())
  8. class hello:      
  9.     def GET(self, name):
  10.         if not name:
  11.             name = 'World'
  12.         return 'Hello, ' + name + '!'

  13. class Index:
  14.     def GET(self):
  15.         return 'index'

  16. if __name__ == "__main__":
  17.     app.run()
复制代码

论坛徽章:
0
2 [报告]
发表于 2010-06-11 14:28 |只看该作者
这个你google下可以解决的

论坛徽章:
0
3 [报告]
发表于 2010-06-11 14:40 |只看该作者
404解决了
但访问URL后直接显示的是code.py的源码
汗啊,哪位高人指点一二~~~

论坛徽章:
0
4 [报告]
发表于 2010-06-11 16:10 |只看该作者
顶一下

论坛徽章:
0
5 [报告]
发表于 2010-06-11 16:14 |只看该作者
顶一下
幻想曲yibin 发表于 2010-06-11 16:10
  1. LoadModule wsgi_module modules/mod_wsgi.so

  2. WSGIScriptAlias /webpy-htdocs "D:/wwwroot/webpy-htdocs/code.py/"
  3. Alias /webpy-htdocs/static "D:/wwwroot/webpy-htdocs/static/"

  4. <Directory "D:/wwwroot/webpy-htdocs">
  5.     Order allow,deny
  6.     Allow from all
  7. </Directory>
复制代码
这是我在apache里面曾经一个可以跑起来的配置

论坛徽章:
0
6 [报告]
发表于 2010-06-11 16:27 |只看该作者
谢楼上
# WSGIScriptAlias /webpy-htdocs "D:/wwwroot/webpy-htdocs/code.py/"
# Alias /webpy-htdocs/static "D:/wwwroot/webpy-htdocs/static/"

这里的/webpy-htdocs是什么路径?我这里要改么?

论坛徽章:
0
7 [报告]
发表于 2010-06-11 16:30 |只看该作者
是我一个项目的路径,你修改成你自己的就可以了

论坛徽章:
0
8 [报告]
发表于 2010-06-11 16:31 |只看该作者
本帖最后由 幻想曲yibin 于 2010-06-11 16:42 编辑

WSGIScriptAlias / "D:/webpy/main.py/"
Alias /static/ "D:/webpy/static/"

依旧显示源码

论坛徽章:
0
9 [报告]
发表于 2010-06-11 16:56 |只看该作者
WSGIScriptAlias / "D:/webpy/main.py/"
Alias /static/ "D:/webpy/static/"

依旧显示源码:dizz ...
幻想曲yibin 发表于 2010-06-11 16:31
  1. import web

  2. urls = (
  3.     '/.*', 'hello',
  4.     )
  5. class hello:
  6.     def GET(self):
  7.         return "Hello, webpy!"
  8. application = web.application(urls, globals()).wsgifunc()
复制代码

论坛徽章:
0
10 [报告]
发表于 2010-06-11 17:32 |只看该作者
太谢谢楼上了
我仔细看了一下,是我的代码有问题
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP