簡體   English   中英

301.由於正則表達式,htaccess重定向不起作用

[英]301. htaccess redirect not working due to regex

我在重定向時遇到了一些麻煩

我想重定向所有來自

http://domain.com/?friends=7http://domain.com/win

我正在使用此規則,但它似乎不起作用。

RewriteRule ^\?friends\=7$ /win [R=301]

您無法使用RewriteRule捕獲查詢字符串,而需要為此任務使用RewriteCond

RewriteBase /
RewriteCond %{QUERY_STRING} ^friends=7$
RewriteRule ^$ /win? [L,R=301]

您可以使用此工具測試RewriteRule

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM