@app.route('/news/') def news(): return 'news' @app.route('/news/detail/') def detail(): return 'detail' @app.route('/news.html') def news_html(): return 'news html'