Điểm:0

apache gắn thẻ cho một số tùy chọn

lá cờ in

Tôi muốn đặt vài Địa điểm các thẻ trong cấu hình Apache của tôi. Ví dụ: /hình ảnh, /tập tin, /âm thanh và để chuyển nó đến localhost:cổng/đường dẫn. Ngay bây giờ tôi đang sử dụng cái này cho /hình ảnh:

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

Tôi có phải viết đoạn mã này cho mọi thông số không? Hoặc có bất kỳ phím tắt cho nó?

Cảm ơn!

Điểm:0
lá cờ 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.

Đăng câu trả lời

Hầu hết mọi người không hiểu rằng việc đặt nhiều câu hỏi sẽ mở ra cơ hội học hỏi và cải thiện mối quan hệ giữa các cá nhân. Ví dụ, trong các nghiên cứu của Alison, mặc dù mọi người có thể nhớ chính xác có bao nhiêu câu hỏi đã được đặt ra trong các cuộc trò chuyện của họ, nhưng họ không trực giác nhận ra mối liên hệ giữa câu hỏi và sự yêu thích. Qua bốn nghiên cứu, trong đó những người tham gia tự tham gia vào các cuộc trò chuyện hoặc đọc bản ghi lại các cuộc trò chuyện của người khác, mọi người có xu hướng không nhận ra rằng việc đặt câu hỏi sẽ ảnh hưởng—hoặc đã ảnh hưởng—mức độ thân thiện giữa những người đối thoại.