Score:0

อาปาเช่ แท็กสำหรับสองสามตัวเลือก

ธง in

ฉันต้องการตั้งสองสาม ที่ตั้ง แท็กในการกำหนดค่า Apache ของฉัน ตัวอย่างเช่น: /ภาพ, /ไฟล์, /เสียง และส่งต่อให้ localhost:พอร์ต/เส้นทาง. ตอนนี้ฉันใช้สิ่งนี้เพื่อ /ภาพ:

 <Location /image>
        RewriteEngine  on
        Options +MultiViews +FollowSymLinks
        AllowOverride All
        ProxyPreserveHost On
        ProxyPass "http://localhost:PORT/image"
        ProxyPassReverse "http://localhost:PORT/image"
    </Location>

ฉันต้องเขียนโค้ดส่วนนี้สำหรับทุกพารามิเตอร์หรือไม่ หรือมีทางลัดใด ๆ สำหรับมัน?

ขอบคุณ!

Score:0
ธง cn
Bob
<Location /image>
   RewriteEngine  on
   Options +MultiViews +FollowSymLinks
   AllowOverride All
   ProxyPreserveHost On
   ProxyPass "http://localhost:PORT/image"
   ProxyPassReverse "http://localhost:PORT/image"
</Location>

Do I have to write this piece of code for every param?

No. The RewriteEngine directive doesn't do anything there and neither the Options nor the AllowOverride directives make any sense when you don't map to resources on the local file system. Those options are controlled and need to be set by the "remote" webserver that you are forwarding the requests to with the ProxyPass directive.

Since those directives are useless, then you don't need the Location bracket either to set them and can use the inline ProxyPass syntax that is recommended anyway.

That reduces your syntax to only the necessary lines:

ProxyPreserveHost On

ProxyPass "/image" "http://localhost:PORT/image"
ProxyPassReverse "/image" "http://localhost:PORT/image"

ProxyPass "/file" "http://localhost:PORT/file"
ProxyPassReverse "/file" "http://localhost:PORT/file"

Apache httpd does offer the Include directive to maintain a single configuration snippet with settings that you want to include verbatim in different places, VirtualHost, Location, Directory blocks without copying the same lines time after time.

โพสต์คำตอบ

คนส่วนใหญ่ไม่เข้าใจว่าการถามคำถามมากมายจะปลดล็อกการเรียนรู้และปรับปรุงความสัมพันธ์ระหว่างบุคคล ตัวอย่างเช่น ในการศึกษาของ Alison แม้ว่าผู้คนจะจำได้อย่างแม่นยำว่ามีคำถามกี่ข้อที่ถูกถามในการสนทนา แต่พวกเขาไม่เข้าใจความเชื่อมโยงระหว่างคำถามและความชอบ จากการศึกษาทั้ง 4 เรื่องที่ผู้เข้าร่วมมีส่วนร่วมในการสนทนาด้วยตนเองหรืออ่านบันทึกการสนทนาของผู้อื่น ผู้คนมักไม่ตระหนักว่าการถามคำถามจะมีอิทธิพลหรือมีอิทธิพลต่อระดับมิตรภาพระหว่างผู้สนทนา