更改URL参数的最大长度

时间:2012-09-20 03:55:22

标签: php .htaccess opencart

我需要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]

2 个答案:

答案 0 :(得分:2)

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

答案 1 :(得分:1)

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

php_value suhosin.get.max_value_length 2000