gpt4 book ai didi

firebase - 如何在Firebase托管中实现.htaccess配置?

转载 作者:行者123 更新时间:2023-12-03 15:54:58 28 4
gpt4 key购买 nike

我的网域中有一个.htaccess配置,该配置可让我的应用与路由完美配合。当您刷新Angular 2应用无法解析路由时,它避免了错误。
我当前的配置是这个

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# not rewrite css, js and images
RewriteCond %{REQUEST_URI} !\.(?:css|js|map|jpe?g|gif|png|php)$ [NC]
RewriteRule ^(.*)$ /index.html?path=$1 [NC,L,QSA]
</IfModule>
我正在尝试在Firebase Hosting中实现相同的配置,因为我正在迁移网站,但我不知道如何将.htaccess转换为Firebase Hosting配置。
有什么简单的方法可以做到吗?

最佳答案

您不能在Firebase hosting中使用.htaccess,但是可以将其配置为重写,重定向,缓存等。

在此处了解如何customize hosting behavior

您的.htaccess将被翻译成

"hosting": {
"rewrites": [ {
"source": "**/!(*.css|*.js|*.map|*.jpg|*.gif|*.png|*.php)",
"destination": "/index.html"
} ]
}

关于firebase - 如何在Firebase托管中实现.htaccess配置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46130632/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com