我需要一段基本上可以完成URL匹配任務的代碼。我在下面列出了兩種情況,以清楚我需要的東西。與查詢字符串匹配的網址
匹配URL可能/不可以包含子目錄,所以有兩種情況。
http://example.com/?pgid=1
http://example.com/?pgid=1&opt2=2
http://example.com/?opt2=2&pgid=1
http://example.com/?pgid=1&opt2=2&opt3=3
http://example.com/?opt2=2&pgid=1&opt3=3
http://example.com/?opt2=2&opt3=3&pgid=1
should match => http://example.com/?pgid=1
和
http://example.com/sub-dir/?pgid=1
http://example.com/sub-dir/?pgid=1&opt2=2
http://example.com/sub-dir/?opt2=2&pgid=1
http://example.com/sub-dir/?pgid=1&opt2=2&opt3=3
http://example.com/sub-dir/?opt2=2&pgid=1&opt3=3
http://example.com/sub-dir/?opt2=2&opt3=3&pgid=1
should match => http://example.com/sub-dir/?pgid=1
我怎樣才能達到上述的事情,幫助表示讚賞。謝謝。
慣於首先懶得告訴我們你做了什麼,以滿足您的需求? – Bhaskar
這將匹配所有網址:'。*'(即,我同意@Bhaskar) – deceze