How to get HTTP GET variables in WSGI

191 Views Asked by At

I am using Apache/2.2.29 in Cent OS. Have installed modwsgi and I have a page being served by MyPage.wsgi. Now I want to receive HTTP Get variables and have written the following inside the httpd.conf.

WSGIScriptAliasMatch url_part_after_root/(.*)/(.*)/(.*) actual_pythonpage.wsgi?p1=$1&p2=$2&p3=$3

However it does not work. Am I missing something? Thank!

0

There are 0 best solutions below