Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ノードとエクスプレスは初めてです。作成したスマイルページ html (test.html) があります (テンプレートなし)。Expressjs を使用して test.html を呼び出そうとしています。test.html を public フォルダーに配置しました。
localhost:300/test.html を実行すると、ページが表示されます。app.get() メソッドを使用して test.html を呼び出すにはどうすればよいですか?
これを行う 1 つの方法は、リダイレクトを使用することです。以下に例を示します。
app.get('/', function(req, res){ res.redirect('/test.html'); });