使用Nuxtjs和i18n進行本地化重定向的SPA模式
P粉071626364
P粉071626364 2023-08-28 13:53:37
0
1
315
<p>當我在SPA模式下產生Nuxtjs時(SSR:false),nuxt產生的dist資料夾中沒有index.html檔案。 </p> <p>所以我有兩個問題</p> <p><strong>1st:我需要重定向到lang資料夾,例如exmple.com重定向到exmaple.com/{locale}</strong></p> <p><strong>2nd:我需要為子頁面重定向,例如exmple.com/admin重定向到exmaple.com/{locale}/admin</strong></p> <pre class="brush:php;toolbar:false;">// nuxt.config.js … i18n: { lazy: true, langDir: 'lang/', locales: [ { code: 'en', iso: 'en-US', file: 'en.js', name: 'English' }, { code: 'ar', iso: 'ar-EG', file: 'ar.js', name: 'عربى' } ], defaultLocale: { locale: 'en', prefix: true }, ...</pre></p>
P粉071626364
P粉071626364

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!