只有我的index.py显示在我的本地ubuntu服务器上,没有其他文件可以正常工作

时间:2015-11-05 17:09:58

标签: python mysql apache ubuntu apache2

我完成了本教程

https://www.digitalocean.com/community/tutorials/how-to-set-up-an-apache-mysql-and-python-lamp-server-without-frameworks-on-ubuntu-14-04

正在设置mysql,apache,python以在ubuntu上运行本地Web服务器。

最后,我的localhost显示了index.py,但是我创建的任何其他python文件都会出现500内部服务器错误。

如何在浏览器中运行其他python文件?

我的index.py,我使用server.com到达

#!/usr/bin/python

# Turn on debug mode.
import cgitb
cgitb.enable()

# Print necessary headers.
print("Content-Type: text/html")
print()

# Connect to the database.
print('hI')

我的test.py,我使用server.com/test.py到达

#!/usr/bin/python
import cgitb
cgitb.enable()
import pandas as pd
import requests
from bs4 import BeautifulSoup
copper.project.path = /home/bert/docs/

print("Content-Type: text/html")
print()
print('hids')

我也对文件chmod做了755

0 个答案:

没有答案