you need mod_rewrite module

来源: 2008-07-18 20:18:50 [旧帖] [给我悄悄话] 本文已被阅读:

in the .htaccess file,

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} ^whateveragent1.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^whateveragent3.* [OR]
...
RewriteCond %{HTTP_USER_AGENT} ^whateveragentn.*
RewriteRule ^/index.php http://example.mobi/otherurl.php [R=301,L]

That should do it.