1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<TITLE>Apache module mod_browser</TITLE>
</HEAD>
<!-- Background white, links blue (unvisited), navy (visited), red (active) -->
<BODY
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#000080"
ALINK="#FF0000"
>
<DIV ALIGN="CENTER">
<IMG SRC="../images/sub.gif" ALT="[APACHE DOCUMENTATION]">
<H3>
Apache HTTP Server Version 1.3
</H3>
</DIV>
<H1 ALIGN="CENTER">Module mod_browser</H1>
This module is contained in the <CODE>mod_browser.c</CODE> file, and
is compiled in by default. It provides for setting environment
variables based on the browser. This module is part of Apache 1.2.*
only. From Apache 1.3 onwards <CODE><A
HREF="mod_setenvif.html">mod_setenvif</A></CODE> provides the functionality
of this module.
<H2>Summary</H2>
<P>This module allows you to set environment variables based on the name of
the browser accessing your document, based on the <CODE>User-Agent</CODE>
header field. This is especially useful when combined with a conditional
HTML language such as <A HREF="mod_include.html">XSSI</A> or PHP, and
can provide for simple browser-based negotiation of HTML features.</P>
<H2>Directives</H2>
<UL>
<LI><A HREF="#browsermatch">BrowserMatch</A>
<LI><A HREF="#browsermatchnocase">BrowserMatchNoCase</A>
</UL>
<HR>
<H2><A NAME="browsermatch">BrowserMatch</A></H2>
<A
HREF="directive-dict.html#Syntax"
REL="Help"
><STRONG>Syntax:</STRONG></A> BrowserMatch <EM>regex attr1 attr2...</EM><BR>
<A
HREF="directive-dict.html#Context"
REL="Help"
><STRONG>Context:</STRONG></A> server config<BR>
<A
HREF="directive-dict.html#Status"
REL="Help"
><STRONG>Status:</STRONG></A> base<BR>
<A
HREF="directive-dict.html#Module"
REL="Help"
><STRONG>Module:</STRONG></A> mod_browser<BR>
<A
HREF="directive-dict.html#Compatibility"
REL="Help"
><STRONG>Compatibility:</STRONG></A> Apache 1.2 and above<P>
The BrowserMatch directive defines environment variables based on the
User-Agent
header. The first argument should be a POSIX.2 extended regular
expression (similar to an egrep-style regex). The rest of the arguments
give names of variables to set. These take the form of either
"<CODE>varname</CODE>", "<CODE>!varname</CODE>" or
"<CODE>varname=value</CODE>". In the first form, the value will be set
to "1". The second will remove the given variable if already defined,
and the third will set the variable to the value given by <CODE>value</CODE>. If a User-Agent
string matches more than one entry, they will
be merged. Entries are processed in the order they appear, and later
entries can override earlier ones.
<P>For example:</P>
<PRE>
BrowserMatch ^Mozilla forms jpeg=yes browser=netscape
BrowserMatch "^Mozilla/[2-3]" tables agif frames javascript
BrowserMatch MSIE !javascript
</PRE>
<P><H2><A NAME="browsermatchnocase">BrowserMatchNoCase</A></H2>
<A
HREF="directive-dict.html#Syntax"
REL="Help"
><STRONG>Syntax:</STRONG></A> BrowserMatchNoCase <EM>regex attr1 attr2...</EM><BR>
<A
HREF="directive-dict.html#Context"
REL="Help"
><STRONG>Context:</STRONG></A> server config<BR>
<A
HREF="directive-dict.html#Status"
REL="Help"
><STRONG>Status:</STRONG></A> base<BR>
<A
HREF="directive-dict.html#Module"
REL="Help"
><STRONG>Module:</STRONG></A> mod_browser<BR>
<A
HREF="directive-dict.html#Compatibility"
REL="Help"
><STRONG>Compatibility:</STRONG></A> Apache 1.2 and above
<P>The <CODE>BrowserMatchNoCase</CODE> directive is semantically identical to
the <A HREF="#browsermatch"><CODE>BrowserMatch</CODE></A>
directive. However, it provides for case-insensitive matching. For
example:</P>
<PRE>
BrowserMatchNoCase mac platform=macintosh
BrowserMatchNoCase win platform=windows
</PRE>
<P>
<HR>
<H3 ALIGN="CENTER">
Apache HTTP Server Version 1.3
</H3>
<A HREF="./"><IMG SRC="../images/index.gif" ALT="Index"></A>
<A HREF="../"><IMG SRC="../images/home.gif" ALT="Home"></A>
</BODY>
</HTML>
|