gpt4 book ai didi

.htaccess - net::ERR_INCOMPLETE_CHUNKED_ENCODING

转载 作者:行者123 更新时间:2023-12-03 23:49:06 28 4
gpt4 key购买 nike

我使用 .htaccess 将 url 从 someurl.com/重写为 someurl.com/public/。 www root 中的第一个 .htaccess 包含以下内容:

DirectoryIndex ./public/
RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.*)$ ./public/$1 [QSA]

文件夹/public/中的第二个包含以下内容:
DirectoryIndex _main.php
RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^(.*)$ ./?params=$1 [QSA]

问题是当我打开没有“public”的 url someurl.com/时。页面已正确加载,但在 Google Chrome 控制台中出现错误:net::ERR_INCOMPLETE_CHUNKED_ENCODING。当我打开 url someurl.com/public/页面加载时没有任何错误。

有什么想法吗?

最佳答案

就我而言,问题与缓存有关,并且在执行 CORS 请求时发生。

我在这里发布我的回复,因为这是我在 Google 上找到的第一个资源 net::ERR_INCOMPLETE_CHUNKED_ENCODING错误。

强制响应头 Cache-Controlno-cache解决了我的问题:

[ 使用 Symfony HttpFoundation成分 ]

<?php
$response->headers->add(array(
'Cache-Control' => 'no-cache'
));

关于.htaccess - net::ERR_INCOMPLETE_CHUNKED_ENCODING,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23217824/

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