请求 URI 太大

2022-01-04 00:00:00 request get php capacity

在一个大的 $_GET 查询中遇到这个错误,大小为 ~9 000 个符号(它们被分成 ~10 个变量).

Got this error on a big $_GET query in size ~9 000 symbols (they are divided into ~10 variables).

Request-URI Too Large

The requested URL's length exceeds the capacity limit for this server.

此问题的解决方法是什么?

What is a workaround for this problem?

推荐答案

如果您想在不更改服务器配置的情况下使用 GET 传递所有这些信息,则没有解决方法.

There is no workaround if you want pass all these info with GET without change server configuration.

其他解决方案:

  • 对表单(或隐藏表单)使用 POST 并在提交它的链接上添加 onclick 事件
  • 使用会话.当服务器生成链接时,将其存储在 $_SESSION 中并带有唯一 id(或 RID,可以是完整 URI 的 md5)并通过 GET 传递.
  • 使用数据库或文件存储(与会话过程相同)

相关文章