使用.htaccess从移动重定向规则中排除特定文件

时间:2012-03-19 10:41:03

标签: .htaccess mobile

我使用此代码重定向移动用户:

#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]

(在移动重定向之前)

但排除规则根本不起作用。我做错了什么?

0 个答案:

没有答案