Author: rbowen
Date: Fri Apr 8 14:17:00 2011
New Revision: 1090259
URL: http://svn.apache.org/viewvc?rev=1090259&view=rev
Log:
Remove unnecessary .*s from regex.
Modified:
httpd/httpd/branches/2.2.x/docs/manual/rewrite/remapping.html.en
Modified: httpd/httpd/branches/2.2.x/docs/manual/rewrite/remapping.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/rewrite/remapping.html.en?rev=1090259&r1=1090258&r2=1090259&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/rewrite/remapping.html.en (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/rewrite/remapping.html.en Fri Apr 8 14:17:00 2011
@@ -462,8 +462,8 @@ com http://www.example.com/<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>]
|