diff options
Diffstat (limited to 'docs/manual/platform/windows.html.en')
-rw-r--r-- | docs/manual/platform/windows.html.en | 29 |
1 files changed, 10 insertions, 19 deletions
diff --git a/docs/manual/platform/windows.html.en b/docs/manual/platform/windows.html.en index 9edb19df..010f0d94 100644 --- a/docs/manual/platform/windows.html.en +++ b/docs/manual/platform/windows.html.en @@ -9,7 +9,7 @@ <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 src="../style/scripts/prettify.min.js" type="text/javascript"> </script> <link href="../images/favicon.ico" rel="shortcut icon" /></head> @@ -75,6 +75,7 @@ <ul> <li><a href="http://www.apachehaus.com/cgi-bin/download.plx">ApacheHaus</a></li> <li><a href="http://www.apachelounge.com/download/">Apache Lounge</a></li> + <li><a href="http://bitnami.com/stack/wamp">BitNami WAMP Stack</a></li> <li><a href="http://www.wampserver.com/">WampServer</a></li> <li><a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a></li> </ul> @@ -140,12 +141,10 @@ how it is accessed. If you wish to assure that only lowercase is used in URLs, you can use something like:</p> - <pre class="prettyprint lang-config"> -RewriteEngine On + <pre class="prettyprint lang-config">RewriteEngine On RewriteMap lowercase int:tolower RewriteCond %{REQUEST_URI} [A-Z] -RewriteRule (.*) ${lowercase:$1} [R,L] - </pre> +RewriteRule (.*) ${lowercase:$1} [R,L]</pre> </li> <li><p>When running, Apache needs write access only to the logs @@ -167,9 +166,7 @@ RewriteRule (.*) ${lowercase:$1} [R,L] module, use the following (in addition to the status-activating directives in <code>access.conf</code>):</p> - <pre class="prettyprint lang-config"> - LoadModule status_module modules/mod_status.so - </pre> + <pre class="prettyprint lang-config">LoadModule status_module modules/mod_status.so</pre> <p>Information on <a href="../mod/mod_so.html#creating">creating @@ -607,23 +604,17 @@ RewriteRule (.*) ${lowercase:$1} [R,L] (Arcane and error prone procedures may work around the restriction on mapped drive letters, but this is not recommended.)</p> - <div class="example"><h3>Example DocumentRoot with UNC path</h3><pre class="prettyprint lang-config"> - DocumentRoot //dochost/www/html/ - </pre> + <div class="example"><h3>Example DocumentRoot with UNC path</h3><pre class="prettyprint lang-config">DocumentRoot //dochost/www/html/</pre> </div> - <div class="example"><h3>Example DocumentRoot with IP address in UNC path</h3><pre class="prettyprint lang-config"> - DocumentRoot //192.168.1.50/docs/ - </pre> + <div class="example"><h3>Example DocumentRoot with IP address in UNC path</h3><pre class="prettyprint lang-config">DocumentRoot //192.168.1.50/docs/</pre> </div> - <div class="example"><h3>Example Alias and corresponding Directory with UNC path</h3><pre class="prettyprint lang-config"> -Alias /images/ //imagehost/www/images/ + <div class="example"><h3>Example Alias and corresponding Directory with UNC path</h3><pre class="prettyprint lang-config">Alias /images/ //imagehost/www/images/ <Directory //imagehost/www/images/> #... -<Directory> - </pre> +<Directory></pre> </div> <p>When running Apache httpd as a service, you must create a @@ -652,7 +643,7 @@ var comments_identifier = 'http://httpd.apache.org/docs/2.4/platform/windows.htm } })(window, document); //--><!]]></script></div><div id="footer"> -<p class="apache">Copyright 2013 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="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/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(); |