Apache 从移动重定向中排除URL

Apache 从移动重定向中排除URL,apache,.htaccess,redirect,Apache,.htaccess,Redirect,我有一个基于用户代理的移动重定向。我现在想排除一页。我在另一个问题中读到,我应该做以下事情,但是Nice_page.html仍然重定向到移动站点 RewriteEngine on RewriteCond %{HTTP_USER_AGENT} "android|blackberry|googlebot-mobile|iemobile|iphone|ipod|#opera mobile|palmos|webos" [NC] RewriteCond %{REQUEST_URI} !^/Nice_pa

我有一个基于用户代理的移动重定向。我现在想排除一页。我在另一个问题中读到,我应该做以下事情,但是Nice_page.html仍然重定向到移动站点

RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} "android|blackberry|googlebot-mobile|iemobile|iphone|ipod|#opera mobile|palmos|webos" [NC]

RewriteCond %{REQUEST_URI} !^/Nice_page.html [NC]

RewriteRule .* http://example.mobile.com/ [R]

我做错了什么?

你的重写规则提醒我:你的链接就像http://www.domain.com/nice_page.html ? 没有目录?是的,这就是为什么要猜测何时有重写日志/日志级别的重写:Trace8我不知道这意味着什么,你能详细说明一下吗?