403エラーの対処法を教えてください
解決したいこと
Pythonとhtmlとデータベースを使って、可変式のwebサイトを作ってます。
「Flask」のrender_templateを使ってます。
ftpソフトの「filezilla」にindex.htmlをアップロードすると403エラーが出ます。
templatesフォルダ内にindex.htmlを置いても大丈夫なように出来ますか?
または、templatesフォルダにindex.htmlファイルを入れずに、render_templateを使う方法はありますでしょうか?
自分で試したこと
index.htmlもapp.pyも読み取り権限を755に設定しても403エラーが出ます。
templatesフォルダ外にindex.htmlを置くとエラーは解消されるのですが、テンプレートを使ったwebサイトを作ることが出来なくなります。
filezillaでの階層
-app.py
-templates
-index.html
該当するソースコード
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
if __name__ == '__main__':
app.run()