use the following: </p>
<div class="example"><pre>
-RewriteCond %{HTTP_USER_AGENT} Mozilla
+RewriteCond %{HTTP_USER_AGENT} ^Mozilla
RewriteRule ^/$ /homepage.max.html [L]
-RewriteCond %{HTTP_USER_AGENT} Lynx
+RewriteCond %{HTTP_USER_AGENT} ^Lynx
RewriteRule ^/$ /homepage.min.html [L]
RewriteRule ^/$ /homepage.std.html [L]
<example>
<pre>
-RewriteCond %{HTTP_USER_AGENT} Mozilla
+RewriteCond %{HTTP_USER_AGENT} ^Mozilla
RewriteRule ^/$ /homepage.max.html [L]
-RewriteCond %{HTTP_USER_AGENT} Lynx
+RewriteCond %{HTTP_USER_AGENT} ^Lynx
RewriteRule ^/$ /homepage.min.html [L]
RewriteRule ^/$ /homepage.std.html [L]
This is done with the following ruleset:</p>
<div class="example"><p><code>
-RewriteCond %{HTTP_USER_AGENT} <strong>Mozilla/3</strong>.*<br />
+RewriteCond %{HTTP_USER_AGENT} <strong>^Mozilla/3</strong>.*<br />
RewriteRule ^foo\.html$ foo.<strong>NS</strong>.html [<strong>L</strong>]<br />
<br />
-RewriteCond %{HTTP_USER_AGENT} <strong>Lynx/</strong> [OR]<br />
-RewriteCond %{HTTP_USER_AGENT} <strong>Mozilla/[12]</strong><br />
+RewriteCond %{HTTP_USER_AGENT} <strong>^Lynx/</strong> [OR]<br />
+RewriteCond %{HTTP_USER_AGENT} <strong>^Mozilla/[12]</strong><br />
RewriteRule ^foo\.html$ foo.<strong>20</strong>.html [<strong>L</strong>]<br />
<br />
RewriteRule ^foo\.html$ foo.<strong>32</strong>.html [<strong>L</strong>]
This is done with the following ruleset:</p>
<example>
-RewriteCond %{HTTP_USER_AGENT} <strong>Mozilla/3</strong>.*<br />
+RewriteCond %{HTTP_USER_AGENT} <strong>^Mozilla/3</strong>.*<br />
RewriteRule ^foo\.html$ foo.<strong>NS</strong>.html [<strong>L</strong>]<br />
<br />
-RewriteCond %{HTTP_USER_AGENT} <strong>Lynx/</strong> [OR]<br />
-RewriteCond %{HTTP_USER_AGENT} <strong>Mozilla/[12]</strong><br />
+RewriteCond %{HTTP_USER_AGENT} <strong>^Lynx/</strong> [OR]<br />
+RewriteCond %{HTTP_USER_AGENT} <strong>^Mozilla/[12]</strong><br />
RewriteRule ^foo\.html$ foo.<strong>20</strong>.html [<strong>L</strong>]<br />
<br />
RewriteRule ^foo\.html$ foo.<strong>32</strong>.html [<strong>L</strong>]