使用Nuxtjs和i18n进行本地化重定向的SPA模式
P粉071626364
P粉071626364 2023-08-28 13:53:37
0
1
314
<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学习者快速成长!