gpt4 book ai didi

python - 301 永久移动,使用 python fcgi

转载 作者:行者123 更新时间:2023-12-01 03:51:28 25 4
gpt4 key购买 nike

我正在使用一个相当便宜的共享托管帐户,尝试使用 http://fgimian.github.io/blog/2014/02/14/serving-a-python-flask-website-on-hostmonster 部署 Flask 应用程序。我已将代码和 fcgi 脚本放入 ~/domains/mini

fcgi 脚本是:

#!/home/username/anaconda2/bin/python
import sys,os
from flup.server.fcgi import WSGIServer
sys.path.insert(0, '/username/domains/mini')
from myflaskapp.settings import Config, SharedConfig
from myflaskapp.app import create_app

if __name__ == '__main__':
app = create_app(SharedConfig)
WSGIServer(app).run()

我已经完成最后一步并在命令行测试它:

[~/domains/mini]# ./mini.fcgi
....
Status: 301 MOVED PERMANENTLY
Content-Type: text/html; charset=utf-8
Content-Length: 241
Location: http://localhost/

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
&lt;title&gt;Redirecting...&lt;/title&gt;
<h1>Redirecting...</h1>
<p>You should be redirected automatically to target URL: <a href="http://localhost/">http://localhost/</a>.

托管公司没有帮助我解决这个问题。关于下一步该做什么有什么想法吗?

最佳答案

我最近遇到了同样的问题,并通过降级我的 Werkzeug 软件包解决了这个问题

pip install Werkzeug==0.9.6

我不清楚为什么这有帮助,但似乎我的 Werkzeug 版本 (0.11.10) 与 Flask (0.11.1) 不兼容。

关于python - 301 永久移动,使用 python fcgi,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38174875/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com