前提・実現したいこと
.htaccess > .cgi > .pyでpythonファイルを実行したいです
ロリポップカスタマーサービスへ連絡しましたが、回答に数日かかるということで質問させていただきました
発生している問題・エラーメッセージ
404error お探しのページが見つかりませんでした。
エラーログの見方がわからないため、どこでエラーが起きているかわかりません
該当のソースコード
htaccess
1AllowOverride All 2RewriteEngine On 3RewriteBase / 4RewriteRule ^index.cgi$ - [L] 5RewriteRule . /index.cgi [L] 6RewriteCond %{REQUEST_FILENAME} !-f 7RewriteCond %{REQUEST_FILENAME} !-d 8Options -Indexes
indexcgi
1#!/usr/local/bin/python3.7 2# -*- coding: utf-8 -*- 3import cgitb 4cgitb.enable() 5print("Content-type: text/html\n") 6 7from wsgiref.handlers import CGIHandler 8from app import app 9CGIHandler().run(app) 10 11import cgi 12form = cgi.FieldStorage()
apppy
1from flask import Flask , render_template 2 3app = Flask(__name__) 4 5@app.route('/') 6def index(): 7 return render_template('ind.html')
treetxt
1/--.htaccess 2 -index.cgi 3 -app.py 4 -templates-ind.html
補足情報(FW/ツールのバージョンなど)
mac python3.7 lolipop!FTP