0

我有以下网址:

http://example.com/directory/proc.php?email=a@b.com&link=http://example.org

“链接”变量中的值将始终具有 http:// 或 https:// ,我想从 url 中删除它。

所以我最终会得到:

http://example.com/directory/proc.php?email=a@b.com&link=example.org

4

1 回答 1

1
RewriteEngine on
RewriteCond %{QUERY_STRING} ^((.+&)?link=)(https?://)(.+)$
RewriteRule (.*) /$1?%1%4 [NC,L,R]
于 2013-06-19T15:10:30.530 回答