How would I redirect a user to a specific page if they were, say, using a PSP. Mozilla/4.0 (PSP (PlayStation Portable); 2.00)
I know there's a way, but I'm sure how to do it.
I know there's a way, but I'm sure how to do it.
| Code: |
|
RewriteEngine on RewriteCond %{HTTP_USER_AGENT} ^Mozilla.*MSIE [456]\.0.* RewriteRule ^$ yourareusingmicrosoft.html [L] |
| Code: |
|
RewriteEngine on RewriteCond %{HTTP_USER_AGENT} ^Mozilla/4.0 (PSP (PlayStation Portable); 2.00) RewriteRule ^$ yourareusingmicrosoft.html [L] |
| Code: |
|
RewriteEngine on RewriteCond %{HTTP_USER_AGENT} ^Mozilla/.*PSP.* RewriteRule ^$ psppage.html [L] |