mirror of
				https://github.com/apache/httpd.git
				synced 2025-11-03 17:53:20 +03:00 
			
		
		
		
	git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1339505 13f79535-47bb-0310-9956-ffa450edef68
		
			
				
	
	
		
			94 lines
		
	
	
		
			6.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			6.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="ISO-8859-1"?>
 | 
						|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 | 
						|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
 | 
						|
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 | 
						|
              This file is generated from xml source: DO NOT EDIT
 | 
						|
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 | 
						|
      -->
 | 
						|
<title>Apache mod_rewrite - Apache HTTP Server</title>
 | 
						|
<link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
 | 
						|
<link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
 | 
						|
<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" />
 | 
						|
<script src="../style/scripts/prettify.js" type="text/javascript">
 | 
						|
</script>
 | 
						|
 | 
						|
<link href="../images/favicon.ico" rel="shortcut icon" /></head>
 | 
						|
<body id="manual-page"><div id="page-header">
 | 
						|
<p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.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>
 | 
						|
<p class="apache">Apache HTTP Server Version 2.5</p>
 | 
						|
<img alt="" src="../images/feather.gif" /></div>
 | 
						|
<div class="up"><a href="../"><img title="<-" alt="<-" src="../images/left.gif" /></a></div>
 | 
						|
<div id="path">
 | 
						|
<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>
 | 
						|
<div class="toplang">
 | 
						|
<p><span>Available Languages: </span><a href="../en/rewrite/" title="English"> en </a> |
 | 
						|
<a href="../fr/rewrite/" hreflang="fr" rel="alternate" title="Français"> fr </a> |
 | 
						|
<a href="../tr/rewrite/" hreflang="tr" rel="alternate" title="Türkçe"> tr </a> |
 | 
						|
<a href="../zh-cn/rewrite/" hreflang="zh-cn" rel="alternate" title="Simplified Chinese"> zh-cn </a></p>
 | 
						|
</div>
 | 
						|
 | 
						|
 | 
						|
    <p><code class="module"><a href="../mod/mod_rewrite.html">mod_rewrite</a></code> provides a way to modify incoming
 | 
						|
    URL requests, dynamically, based on <a href="intro.html#regex">regular
 | 
						|
    expression</a> rules. This allows you to map arbitrary URLs onto
 | 
						|
    your internal URL structure in any way you like.</p>
 | 
						|
 | 
						|
      <p>It supports an unlimited number of rules and an
 | 
						|
      unlimited number of attached rule conditions for each rule to
 | 
						|
      provide a really flexible and powerful URL manipulation
 | 
						|
      mechanism. The URL manipulations can depend on various tests:
 | 
						|
      server variables, environment variables, HTTP
 | 
						|
      headers, time stamps, external database lookups, and various other
 | 
						|
      external programs or handlers, can be used to achieve granular URL
 | 
						|
      matching.</p>
 | 
						|
 | 
						|
      <p>Rewrite rules can operate on the full URLs, including the path-info
 | 
						|
      and query string portions, and may be used in per-server context
 | 
						|
      (<code>httpd.conf</code>), per-virtualhost context (<code class="directive"><a href="../mod/core.html#virtualhost"><VirtualHost></a></code> blocks), or
 | 
						|
      per-directory context (<code>.htaccess</code> files and <code class="directive"><a href="../mod/core.html#directory"><Directory></a></code> blocks). The
 | 
						|
      rewritten result can lead to further rules, internal
 | 
						|
      sub-processing, external request redirection, or proxy
 | 
						|
      passthrough, depending on what <a href="flags.html">flags</a> you
 | 
						|
      attach to the rules.</p>
 | 
						|
 | 
						|
      <p>Since mod_rewrite is so powerful, it can indeed be rather
 | 
						|
      complex. This document supplements the <a href="../mod/mod_rewrite.html">reference documentation</a>, and
 | 
						|
      attempts to allay some of that complexity, and provide highly
 | 
						|
      annotated examples of common scenarios that you may handle with
 | 
						|
      mod_rewrite. But we also attempt to show you when you should not
 | 
						|
      use mod_rewrite, and use other standard Apache features instead,
 | 
						|
      thus avoiding this unnecessary complexity.</p>
 | 
						|
 | 
						|
 | 
						|
<ul>
 | 
						|
<li><a href="../mod/mod_rewrite.html">mod_rewrite reference
 | 
						|
documentation</a></li>
 | 
						|
<li><a href="intro.html">Introduction to regular expressions and mod_rewrite</a></li>
 | 
						|
<li><a href="remapping.html">Using mod_rewrite for redirection and remapping of URLs</a></li>
 | 
						|
<li><a href="access.html">Using mod_rewrite to control access</a></li>
 | 
						|
<li><a href="vhosts.html">Dynamic virtual hosts with mod_rewrite</a></li>
 | 
						|
<li><a href="proxy.html">Dynamic proxying with mod_rewrite</a></li>
 | 
						|
<li><a href="rewritemap.html">Using RewriteMap</a></li>
 | 
						|
<li><a href="advanced.html">Advanced techniques</a></li>
 | 
						|
<li><a href="avoid.html">When <strong>NOT</strong> to use mod_rewrite</a></li>
 | 
						|
<li><a href="flags.html">RewriteRule Flags</a></li>
 | 
						|
<li><a href="tech.html">Technical details</a></li>
 | 
						|
</ul>
 | 
						|
</div>
 | 
						|
<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
 | 
						|
wiki</a></li><li><a href="../glossary.html">Glossary</a></li></ul></div>
 | 
						|
</div>
 | 
						|
<div class="bottomlang">
 | 
						|
<p><span>Available Languages: </span><a href="../en/rewrite/" title="English"> en </a> |
 | 
						|
<a href="../fr/rewrite/" hreflang="fr" rel="alternate" title="Français"> fr </a> |
 | 
						|
<a href="../tr/rewrite/" hreflang="tr" rel="alternate" title="Türkçe"> tr </a> |
 | 
						|
<a href="../zh-cn/rewrite/" hreflang="zh-cn" rel="alternate" title="Simplified Chinese"> zh-cn </a></p>
 | 
						|
</div><div id="footer">
 | 
						|
<p class="apache">Copyright 2012 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/directives.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[//><!--
 | 
						|
if (typeof(prettyPrint) !== 'undefined') {
 | 
						|
    prettyPrint();
 | 
						|
}
 | 
						|
//--><!]]></script>
 | 
						|
</body></html> |