Firebase 托管在本地主机上重写?
Firebase hosting rewrites on localhost?
我正在 (Apache - Xampp) 上的本地网站上工作,并将其部署在 firebase 上以将更改推送到我的域。一切正常,除了在本地主机上托管 "re-writes" 不遵循 firebase.json
(原因很明显)。
有没有一种方法可以自动将 firebase 托管重写同步到 .htaccess 文件,而不是手动管理两个不同的文件。或任何其他尊重 firebase.json
托管重写的本地服务器。
重写示例:
"rewrites": [ {
"source": "/",
"destination": "/homepage.html"
},
{
"source": "/another",
"destination": "/another-page.html"
},
]
提前致谢。
自己找的。
firebase serve
将在 http://localhost:5000
创建本地版本的 firebase 托管
所有重写都适用于 localhost:5000
我正在 (Apache - Xampp) 上的本地网站上工作,并将其部署在 firebase 上以将更改推送到我的域。一切正常,除了在本地主机上托管 "re-writes" 不遵循 firebase.json
(原因很明显)。
有没有一种方法可以自动将 firebase 托管重写同步到 .htaccess 文件,而不是手动管理两个不同的文件。或任何其他尊重 firebase.json
托管重写的本地服务器。
重写示例:
"rewrites": [ {
"source": "/",
"destination": "/homepage.html"
},
{
"source": "/another",
"destination": "/another-page.html"
},
]
提前致谢。
自己找的。
firebase serve
将在 http://localhost:5000
所有重写都适用于 localhost:5000