如何使用uWSGI应用程序服务器创建自定义错误(CGI或HTML)?
取自https://softwarerecs.stackexchange.com/a/3951/2719
的配置示例如果用户访问的链接不存在,而不仅仅是Not Found
页面,如何执行CGI脚本(或者只有HTML文件,如果不可能)?
答案 0 :(得分:1)
使用内部路由子系统:
error-route-status = 404 static:yourfile.html
或
error-route-status = 404 cgi:yourscript.foo
http://uwsgi-docs.readthedocs.org/en/latest/InternalRouting.html