-
-
Save Amitesh/1451423 to your computer and use it in GitHub Desktop.
An example of how Costco could redirect mobile requests properly
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# setup | |
RewriteEngine on | |
RewriteBase / | |
# product redirection based on iPhone and product request | |
# note: the user agent check is contrived, you should have | |
# a much more robust checker | |
RewriteCond %{HTTP_USER_AGENT} iPhone | |
RewriteCond %{QUERY_STRING} Prodid=(\d+) | |
RewriteRule ^Browse\/Product\.aspx http://m.costco.com/costco/product/productDirectDetail.do?itemId=%1 [R=301,L] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment