index.html.en revision d474d8ef01ec5c2a09341cd148851ed383c3287c
4506N/A<?xml version="1.0" encoding="ISO-8859-1"?>
4506N/A<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4506N/A<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
4506N/A XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
4506N/A This file is generated from xml source: DO NOT EDIT
4506N/A XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
4506N/A -->
4506N/A<title>Apache mod_rewrite - Apache HTTP Server</title>
4506N/A<link href="/style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
4506N/A<link href="/style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
4506N/A<link href="/style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
4506N/A<link href="/images/favicon.ico" rel="shortcut icon" /></head>
4506N/A<body id="manual-page"><div id="page-header">
4506N/A<p class="menu"><a href="/mod/">Modules</a> | <a href="/mod/directives.html">Directives</a> | <a href="/faq/">FAQ</a> | <a href="/glossary.html">Glossary</a> | <a href="/sitemap.html">Sitemap</a></p>
4506N/A<p class="apache">Apache HTTP Server Version 2.3</p>
4506N/A<img alt="" src="/images/feather.gif" /></div>
4506N/A<div class="up"><a href="../"><img title="&lt;-" alt="&lt;-" src="/images/left.gif" /></a></div>
4506N/A<div id="path">
4506N/A<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs/">Documentation</a> &gt; <a href="../">Version 2.3</a></div><div id="page-content"><div id="preamble"><h1>Apache mod_rewrite</h1>
4506N/A<div class="toplang">
4506N/A<p><span>Available Languages: </span><a href="/en/rewrite/" title="English">&nbsp;en&nbsp;</a> |
4506N/A<a href="/fr/rewrite/" hreflang="fr" rel="alternate" title="Fran�ais">&nbsp;fr&nbsp;</a> |
4506N/A<a href="/tr/rewrite/" hreflang="tr" rel="alternate" title="T�rk�e">&nbsp;tr&nbsp;</a> |
4506N/A<a href="/zh-cn/rewrite/" hreflang="zh-cn" rel="alternate" title="Simplified Chinese">&nbsp;zh-cn&nbsp;</a></p>
4506N/A</div>
4506N/A
4506N/A
4506N/A <p><code class="module"><a href="/mod/mod_rewrite.html">mod_rewrite</a></code> provides a way to modify incoming
4506N/A URL requests, dynamically, based on <a href="intro.html#regex">regular
4506N/A expression</a> rules. This allows you to map arbitrary URLs onto
4506N/A your internal URL structure in any way you like.</p>
4506N/A
4506N/A <p>It supports an unlimited number of rules and an
4506N/A unlimited number of attached rule conditions for each rule to
4506N/A provide a really flexible and powerful URL manipulation
4506N/A mechanism. The URL manipulations can depend on various tests:
4506N/A server variables, environment variables, HTTP
4506N/A headers, time stamps, external database lookups, and various other
4506N/A external programs or handlers, can be used to achieve granular URL
4506N/A matching.</p>
4506N/A
4506N/A <p>Rewrite rules can operate on the full URLs, including the path-info
4506N/A and query string portions, and may be used in per-server context
4506N/A (<code>httpd.conf</code>), per-virtualhost context (<code class="directive"><a href="/mod/core.html#virtualhost">&lt;VirtualHost&gt;</a></code> blocks), or
4506N/A per-directory context (<code>.htaccess</code> files and <code class="directive"><a href="/mod/core.html#directory">&lt;Directory&gt;</a></code> blocks). The
4506N/A rewritten result can lead to further rules, internal
4506N/A sub-processing, external request redirection, or proxy
4506N/A passthrough, depending on what <a href="flags.html">flags</a> you
4506N/A attach to the rules.</p>
4506N/A
4506N/A <p>Since mod_rewrite is so powerful, it can indeed be rather
4506N/A complex. This document supplements the <a href="/mod/mod_rewrite.html">reference documentation</a>, and
4506N/A attempts to allay some of that complexity, and provide highly
4506N/A annoted examples of common scenarios that you may handle with
4506N/A mod_rewrite. But we also attempt to show you when you should not
4506N/A use mod_rewrite, and use other standard Apache features instead,
4506N/A thus avoiding this unnecessary complexity.</p>
4506N/A
4506N/A
4506N/A<ul>
4506N/A<li><a href="/mod/mod_rewrite.html">mod_rewrite reference
4506N/Adocumentation</a></li>
4506N/A<li><a href="intro.html">Introduction to regular expressions and mod_rewrite</a></li>
4506N/A<li><a href="remapping.html">Using mod_rewrite for redirection and remapping of URLs</a></li>
4506N/A<li><a href="access.html">Using mod_rewrite to control access</a></li>
4506N/A<li><a href="vhosts.html">Dynamic virtual hosts with mod_rewrite</a></li>
4506N/A<li><a href="proxy.html">Dynamic proxying with mod_rewrite</a></li>
4506N/A<li><a href="rewritemap.html">Using RewriteMap</a></li>
4506N/A<li><a href="advanced.html">Advanced techniques and tricks</a></li>
4506N/A<li><a href="avoid.html">When <strong>NOT</strong> to use mod_rewrite</a></li>
4506N/A<li><a href="flags.html">RewriteRule Flags</a></li>
4506N/A<li><a href="tech.html">Technical details</a></li>
4506N/A</ul>
4506N/A</div>
4506N/A<div id="quickview"><h3>See also</h3><ul class="seealso"><li><a href="/mod/mod_rewrite.html">mod_rewrite reference
4506N/Adocumentation</a></li><li><a href="/urlmapping.html">Mapping URLs to the Filesystem</a></li><li><a href="http://wiki.apache.org/httpd/Rewrite">mod_rewrite
4506N/Awiki</a></li><li><a href="/glossary.html">Glossary</a></li></ul></div>
4506N/A</div>
4506N/A<div class="bottomlang">
4506N/A<p><span>Available Languages: </span><a href="/en/rewrite/" title="English">&nbsp;en&nbsp;</a> |
4506N/A<a href="/fr/rewrite/" hreflang="fr" rel="alternate" title="Fran�ais">&nbsp;fr&nbsp;</a> |
4506N/A<a href="/tr/rewrite/" hreflang="tr" rel="alternate" title="T�rk�e">&nbsp;tr&nbsp;</a> |
4506N/A<a href="/zh-cn/rewrite/" hreflang="zh-cn" rel="alternate" title="Simplified Chinese">&nbsp;zh-cn&nbsp;</a></p>
4506N/A</div><div id="footer">
4506N/A<p class="apache">Copyright 2011 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
4506N/A<p class="menu"><a href="/mod/">Modules</a> | <a href="/mod/directives.html">Directives</a> | <a href="/faq/">FAQ</a> | <a href="/glossary.html">Glossary</a> | <a href="/sitemap.html">Sitemap</a></p></div>
4506N/A</body></html>