标签: django apache python-3.x wsgi
我在Cent OS中使用Apache / 2.2.29。安装了modwsgi,我有一个由MyPage.wsgi提供的页面。现在我想接收HTTP Get变量并在httpd.conf中编写以下内容。
WSGIScriptAliasMatch url_part_after_root/(.*)/(.*)/(.*) actual_pythonpage.wsgi?p1=$1&p2=$2&p3=$3
然而它不起作用。我错过了什么吗?谢谢!