我試着運行一個簡單的「hello world」python腳本,但在我的瀏覽器中它顯示純文本並且不運行。Python的服務器配置問題
#!/usr/bin/python
print "Content-type: text/html"
print ""
print "Hello, World"
但是,如果我使用php exec函數運行它,則會運行「Hello World」腳本。
<?php
echo exec('python hello.py');
?>
我錯過了什麼使.py文件正常運行? 它是Linux上的Apache
這可能是一個錯字;嘗試在Content-Type中大寫T。 –
歡迎來到SO,user2843577。 – Brian