in reply to Re: Grabbing query string
in thread Grabbing query string
If anyone else needs this I got it to work by doing this in the .htaccess:http://corz.org/serv/tricks/htaccess2.php
It only forwards people who use mobile browsers and who click on a link that specifies an ID in the query string. Everyone else is routed normally. Thanks. Thanks for the help.RewriteCond %{QUERY_STRING} ID=(.+) RewriteRule ^articles/(.*) http://www.site.com/cgi-bin/mobile.pl?$1 [Q +SA]
|
|---|