คำถามติดแท็ก kohana

3
nginx + php-fpm - $ _GET params ของฉันอยู่ที่ไหน
ฉันมีปัญหาแปลก ๆ ที่นี่ ฉันเพิ่งย้ายจาก apache + mod_php เป็น nginx + php-fpm ทุกอย่างไปได้ดียกเว้นปัญหาเดียวนี้ ฉันมีเว็บไซต์สมมติว่า example.com เมื่อฉันเข้าถึงมันเหมือนexample.com?test=get_param $_SERVER['REQUEST_URI']มี/?test=get_paramและมี$_GET['test']ยัง แต่เมื่อฉันเข้าถึงexample.com/ajax/search/?search=get_param $_SERVER['REQUEST_URI']คือ/ajax/search/?search=get_paramยังไม่มี$_GET['search'](ไม่มี$_GETอาร์เรย์ที่ทั้งหมด) ฉันใช้กรอบ Kohana ซึ่งเส้นทาง/ajax/searchที่จะควบคุม แต่ฉันได้ใส่phpinfo()ที่index.phpดังนั้นฉันตรวจสอบ$_GETตัวแปรก่อนที่จะกรอบได้ทำอะไรเลย (ที่นี้หมายถึงว่า disapearing params รับไม่ได้กรอบความผิด) nginx.conf ของฉันเป็นแบบนี้ worker_processes 4; pid logs/nginx.pid; events { worker_connections 1024; } http { index index.html index.php; autoindex on; autoindex_exact_size off; include mime.types; default_type application/octet-stream; …
34 nginx  php-fpm  kohana 
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.