我使用此代码重定向移动用户:
#mobile redirect
RewriteCond %{REQUEST_URI} !^/mobile/.*$
RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC]
RewriteRule ^(.*)$ /mobile%{REQUEST_URI} [L,R=302]
此代码从此规则中排除文件:
RewriteRule ^/addNames.php$ $0 [L]
(在移动重定向之前)
但排除规则根本不起作用。我做错了什么?