summaryrefslogtreecommitdiffstats
path: root/docs/manual/howto/public_html.html.en
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2011-10-01 22:57:36 +0200
committerStefan Fritsch <sf@apache.org>2011-10-01 22:57:36 +0200
commita83284e10365f9baf39331e545dde65ecdc99ef1 (patch)
tree62b5783c3c8bdd535762acfcac4676621f71bc25 /docs/manual/howto/public_html.html.en
parentgrammar fix (diff)
downloadapache2-a83284e10365f9baf39331e545dde65ecdc99ef1.tar.xz
apache2-a83284e10365f9baf39331e545dde65ecdc99ef1.zip
update xforms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1178089 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/howto/public_html.html.en')
-rw-r--r--docs/manual/howto/public_html.html.en14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/manual/howto/public_html.html.en b/docs/manual/howto/public_html.html.en
index d99ad6e336..a643689634 100644
--- a/docs/manual/howto/public_html.html.en
+++ b/docs/manual/howto/public_html.html.en
@@ -42,7 +42,7 @@
<div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#related">Per-user web directories</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#userdir">Setting the file path with UserDir</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#redirect">Redirecting to external URLs</a></li>
-<li><img alt="" src="../images/down.gif" /> <a href="#enable">Restricting what users are permitted to use this
+<li><img alt="" src="../images/down.gif" /> <a href="#enable">Restricting what users are permitted to use this
feature</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#cgi">Enabling a cgi directory for each user</a></li>
<li><img alt="" src="../images/down.gif" /> <a href="#htaccess">Allowing users to alter configuration</a></li>
@@ -102,10 +102,10 @@
UserDir public_html /var/html
</code></p></div>
- <p>For the URL <code>http://example.com/~rbowen/file.html</code>,
- Apache will search for <code>~rbowen</code>. If it isn't found,
+ <p>For the URL <code>http://example.com/~rbowen/file.html</code>,
+ Apache will search for <code>~rbowen</code>. If it isn't found,
Apache will search for <code>rbowen</code> in <code>/var/html</code>. If
- found, the above URL will then be translated to the file path
+ found, the above URL will then be translated to the file path
<code>/var/html/rbowen/file.html</code></p>
</div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -114,17 +114,17 @@
<p>The <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code> directive can be
used to redirect user directory requests to external URLs.</p>
-
+
<div class="example"><p><code>
UserDir http://example.org/users/*/
</code></p></div>
-
+
<p>The above example will redirect a request for
<code>http://example.com/~bob/abc.html</code> to
<code>http://example.org/users/bob/abc.html</code>.</p>
</div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
<div class="section">
-<h2><a name="enable" id="enable">Restricting what users are permitted to use this
+<h2><a name="enable" id="enable">Restricting what users are permitted to use this
feature</a></h2>