我有一个基于用户代理的移动重定向。我现在想要排除一个页面。我在另一个问题中读到了我应该执行以下操作,但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]
我做错了什么?