Firebase .htaccess json
Firebase .htaccess to json
我搜索并发现 .htaccess 仅在 firebase 中不起作用 firebase.json
我想让 firebase.json 像这样在 .htaccess
中读取 .html 文件到 php
[Apache2 @ Ubuntu/Debian: use this directive]
AddType application/x-httpd-php .html .htm
Or, from comment below:
AddType application/x-httpd-php5 .html .htm
If your are running PHP as CGI (probably not the case), you should write instead:
AddHandler application/x-httpd-php .html .htm
Firebase 托管不支持评估 PHP 代码。事实上,它并不直接支持任何后端代码执行。
您通过 Firebase 托管 运行 宁后端代码的选项仅限于 integrations with Cloud Functions and Cloud Run。如果您必须 运行 PHP,那么云 运行 是您唯一的选择,并且要完全配置该解决方案并 运行 将需要大量工作。
我搜索并发现 .htaccess 仅在 firebase 中不起作用 firebase.json 我想让 firebase.json 像这样在 .htaccess
中读取 .html 文件到 php[Apache2 @ Ubuntu/Debian: use this directive]
AddType application/x-httpd-php .html .htm
Or, from comment below:
AddType application/x-httpd-php5 .html .htm
If your are running PHP as CGI (probably not the case), you should write instead:
AddHandler application/x-httpd-php .html .htm
Firebase 托管不支持评估 PHP 代码。事实上,它并不直接支持任何后端代码执行。
您通过 Firebase 托管 运行 宁后端代码的选项仅限于 integrations with Cloud Functions and Cloud Run。如果您必须 运行 PHP,那么云 运行 是您唯一的选择,并且要完全配置该解决方案并 运行 将需要大量工作。