0

我需要GET一个长度为 1727 个字符的参数,现在,我只能得到 512 个字符。我该怎么做.htaccess

当前htaccess

RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
4

2 回答 2

2

它与网络服务器无关。代理服务器和浏览器有自己的 url 长度限制,这可能是导致问题的原因。

于 2012-09-20T03:59:36.367 回答
1

要解决此问题,请将以下行添加到.htaccess

php_value suhosin.get.max_value_length 2000
于 2012-09-20T05:26:21.227 回答