最近我在使用Svelte + Sapper構建的應用程序中遇到了一個需求,即在用戶訪問根域名/
時,重定向到頁面URL為/spreadsheet/1
,而不是顯示主頁。
於是我打開了src/routes/index.svelte
文件,刪除了其中所有內容,並添加了以下代碼:
<script context="module">
export async function preload(page, session) {
return this.redirect(301, 'spreadsheet/1')
}
</script>