Điểm:1

Làm cách nào để bạn chuyển hướng URL bằng chuỗi truy vấn bằng htaccess?

lá cờ er

Tôi muốn chuyển hướng các trang như:

example.com/fr/opportunites/?sector_cat=bourses-detudes&ajax_filter=true

Đến


example.com/fr/bourses-detudes/

trang thứ hai là trang loại bài đăng được tạo bằng WordPress

Có khả năng nào để làm điều đó với htacees trong máy chủ litespeed không?

Cảm ơn rất nhiều

Điểm:0
lá cờ kz

In order to match against the query string part of the URL you need to use mod_rewrite with a condition (RewriteCond directive) that specifically checks the query string. Other directives only check against the URL-path (which naturally excludes the query string).

So, from your example, to redirect from /fr/opportunites/?sector_cat=<value>&ajax_filter=true to /fr/<value>/ you would need to use something like the following at the top of your .htaccess file before the existing WordPress directives.

RewriteCond %{QUERY_STRING} ^sector_cat=([^&]+)&ajax_filter=true$
RewriteRule ^fr/opportunites/$ /fr/%1/ [QSD,R=302,L]

The URL parameters (sector_cat and ajax_filter) must match in the order stated and no other URL params are permitted. The value of the sector_cat parameter must also be non-empty, otherwise it matches any characters except for &.

The %1 backreference in the RewriteRule substitution contains the captured subpattern from the query string (ie. the sector_cat parameter value).

The QSD (Query String Discard) flag is necessary in order to remove the original query string from the redirected response.

There is no slash prefix on the RewriteRule pattern when used in .htaccess. So, ^fr/ matches /fr/ at the start of the URL-path.

Test first with a 302 (temporary) redirect to avoid potential caching issues and only change to a 301 (permanent) redirect (if that is the intention) once you have confirmed it works as intended.

Đă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.