我想构建一个使用python脚本浏览Apache2服务器的界面。
我花了几天学习python,今天熟悉了CGI。我想测试一些东西,比如用户可以从基本目录导航到他想要的路径
/var/www/cgi-bin
输入他想要访问的路径,例如
/etc/httpd/conf.d
。
为此,我有change_path.py
脚本,如下所示:
import os
def changePath(path):
os.chdir(path)
我已经运行此脚本以确保所有内容都已正确设置:
#!/usr/bin/python
# Import modules for CGI handling
import cgi, cgitb, os
cwd = os.getcwd()
print "Content-type:text/html\r\n\r\n"
print "<html>"
print "<head>"
print "<title>TestScript</title>"
print "</head>"
print "<body>"
print "<h2> Current working directory is: %s</h2>" % cwd
print "</body>"