
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
localhost:5000까지는 되는데 뒤에 mypage를 넣으면 안됩니다. 404 Not Found 가 뜨네요
제가 검색을 해서 .route('/mapage')를
@app.route("/mypage", methods=["GET"]) 으로 바꾸어봤지만 여전히 안됩니다. 이유를 모르겠네요 ...
The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.
from flask import Flask
app = Flask(__name__)
@app.route('/')
def home():
return 'This is my Home!'
@app.route('/mapage')
def mypage():
return '<button>버튼입니다</button>'
if __name__ == '__main__':
app.run('0.0.0.0',port=5000,debug=True)
