index.html.en revision 2e545ce2450a9953665f701bb05350f0d3f26275
48edb039c53e1ca6320a9050de6e804d56179bebnd<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
48edb039c53e1ca6320a9050de6e804d56179bebnd<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
db878466c5e95073429dda0bdd001f45e9486e16fielding XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
db878466c5e95073429dda0bdd001f45e9486e16fielding This file is generated from xml source: DO NOT EDIT
db878466c5e95073429dda0bdd001f45e9486e16fielding XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
db878466c5e95073429dda0bdd001f45e9486e16fielding<title>Apache mod_rewrite - Apache HTTP Server</title>
db878466c5e95073429dda0bdd001f45e9486e16fielding<link href="/style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
48edb039c53e1ca6320a9050de6e804d56179bebnd<link href="/style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
48edb039c53e1ca6320a9050de6e804d56179bebnd<link href="/style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" /><link rel="stylesheet" type="text/css" href="/style/css/prettify.css" />
48edb039c53e1ca6320a9050de6e804d56179bebnd<script src="/style/scripts/prettify.min.js" type="text/javascript">
48edb039c53e1ca6320a9050de6e804d56179bebnd<link href="/images/favicon.ico" rel="shortcut icon" /></head>
48edb039c53e1ca6320a9050de6e804d56179bebnd<p class="menu"><a href="/mod/">Modules</a> | <a href="/mod/quickreference.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="/glossary.html">Glossary</a> | <a href="/sitemap.html">Sitemap</a></p>
48edb039c53e1ca6320a9050de6e804d56179bebnd<div class="up"><a href="../"><img title="<-" alt="<-" src="/images/left.gif" /></a></div>
48edb039c53e1ca6320a9050de6e804d56179bebnd<a href="http://www.apache.org/">Apache</a> > <a href="http://httpd.apache.org/">HTTP Server</a> > <a href="http://httpd.apache.org/docs/">Documentation</a> > <a href="../">Version 2.5</a></div><div id="page-content"><div id="preamble"><h1>Apache mod_rewrite</h1>
48edb039c53e1ca6320a9050de6e804d56179bebnd<p><span>Available Languages: </span><a href="/en/rewrite/" title="English"> en </a> |
48edb039c53e1ca6320a9050de6e804d56179bebnd<a href="/fr/rewrite/" hreflang="fr" rel="alternate" title="Fran�ais"> fr </a> |
48edb039c53e1ca6320a9050de6e804d56179bebnd<a href="/tr/rewrite/" hreflang="tr" rel="alternate" title="T�rk�e"> tr </a> |
48edb039c53e1ca6320a9050de6e804d56179bebnd<a href="/zh-cn/rewrite/" hreflang="zh-cn" rel="alternate" title="Simplified Chinese"> zh-cn </a></p>
48edb039c53e1ca6320a9050de6e804d56179bebnd <p><code class="module"><a href="/mod/mod_rewrite.html">mod_rewrite</a></code> provides a way to modify incoming
48edb039c53e1ca6320a9050de6e804d56179bebnd URL requests, dynamically, based on <a href="intro.html#regex">regular
48edb039c53e1ca6320a9050de6e804d56179bebnd expression</a> rules. This allows you to map arbitrary URLs onto
a0442b118db844ce6954970c9eec1942f447d6bfnd your internal URL structure in any way you like.</p>
48edb039c53e1ca6320a9050de6e804d56179bebnd <p>It supports an unlimited number of rules and an
48edb039c53e1ca6320a9050de6e804d56179bebnd unlimited number of attached rule conditions for each rule to
48edb039c53e1ca6320a9050de6e804d56179bebnd provide a really flexible and powerful URL manipulation
48edb039c53e1ca6320a9050de6e804d56179bebnd mechanism. The URL manipulations can depend on various tests:
48edb039c53e1ca6320a9050de6e804d56179bebnd server variables, environment variables, HTTP
48edb039c53e1ca6320a9050de6e804d56179bebnd headers, time stamps, external database lookups, and various other
48edb039c53e1ca6320a9050de6e804d56179bebnd external programs or handlers, can be used to achieve granular URL
48edb039c53e1ca6320a9050de6e804d56179bebnd matching.</p>
f6c8886b17f80198c42ef930a0d7ccac5b4a86e6nd <p>Rewrite rules can operate on the full URLs, including the path-info
48edb039c53e1ca6320a9050de6e804d56179bebnd and query string portions, and may be used in per-server context
48edb039c53e1ca6320a9050de6e804d56179bebnd (<code>httpd.conf</code>), per-virtualhost context (<code class="directive"><a href="/mod/core.html#virtualhost"><VirtualHost></a></code> blocks), or
48edb039c53e1ca6320a9050de6e804d56179bebnd per-directory context (<code>.htaccess</code> files and <code class="directive"><a href="/mod/core.html#directory"><Directory></a></code> blocks). The
48edb039c53e1ca6320a9050de6e804d56179bebnd rewritten result can lead to further rules, internal
48edb039c53e1ca6320a9050de6e804d56179bebnd sub-processing, external request redirection, or proxy
48edb039c53e1ca6320a9050de6e804d56179bebnd passthrough, depending on what <a href="flags.html">flags</a> you
48edb039c53e1ca6320a9050de6e804d56179bebnd attach to the rules.</p>
48edb039c53e1ca6320a9050de6e804d56179bebnd <p>Since mod_rewrite is so powerful, it can indeed be rather
48edb039c53e1ca6320a9050de6e804d56179bebnd complex. This document supplements the <a href="/mod/mod_rewrite.html">reference documentation</a>, and
48edb039c53e1ca6320a9050de6e804d56179bebnd attempts to allay some of that complexity, and provide highly
<div id="quickview"><h3>See also</h3><ul class="seealso"><li><a href="/mod/mod_rewrite.html">mod_rewrite reference
documentation</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
<a href="/zh-cn/rewrite/" hreflang="zh-cn" rel="alternate" title="Simplified Chinese"> zh-cn </a></p>
<p class="apache">Copyright 2014 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>
<p class="menu"><a href="/mod/">Modules</a> | <a href="/mod/quickreference.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="/glossary.html">Glossary</a> | <a href="/sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--