我需要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]
答案 0 :(得分:2)
它与网络服务器无关。代理服务器和浏览器有自己的URL长度限制,这可能是导致问题的原因。
答案 1 :(得分:1)
要解决此问题,请将以下行添加到.htaccess
:
php_value suhosin.get.max_value_length 2000