2
ฉันสามารถนามแฝงคำขอไดเรกทอรีทั้งหมดไปยังไฟล์เดียวใน nginx ได้หรือไม่
ฉันพยายามหาวิธีนำคำขอทั้งหมดไปยังไดเรกทอรีเฉพาะและคืนค่าสตริง json โดยไม่เปลี่ยนเส้นทางใน nginx ตัวอย่าง: curl -i http://example.com/api/call1/ ผลลัพธ์ที่คาดหวัง: HTTP/1.1 200 OK Accept-Ranges: bytes Content-Type: application/json Date: Fri, 13 Apr 2012 23:48:21 GMT Last-Modified: Fri, 13 Apr 2012 22:58:56 GMT Server: nginx X-UA-Compatible: IE=Edge,chrome=1 Content-Length: 38 Connection: keep-alive {"logout": true} นี่คือสิ่งที่ฉันมีจนถึงตอนนี้ใน nginx conf: location ~ ^/api/(.*)$ { index /api_logout.json; alias …