diff options
Diffstat (limited to 'docs/manual/mod/mod_example.html.en')
-rw-r--r-- | docs/manual/mod/mod_example.html.en | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/docs/manual/mod/mod_example.html.en b/docs/manual/mod/mod_example.html.en index 06136b58b0..9e61283090 100644 --- a/docs/manual/mod/mod_example.html.en +++ b/docs/manual/mod/mod_example.html.en @@ -114,18 +114,14 @@ <p>To activate the example module, include a block similar to the following in your <code>httpd.conf</code> file:</p> -<pre class="prettyprint lang-config"> -<Location /example-info> +<pre class="prettyprint lang-config"><Location /example-info> SetHandler example-handler -</Location> -</pre> +</Location></pre> <p>As an alternative, you can put the following into a <a href="core.html#accessfilename"><code>.htaccess</code></a> file and then request the file "test.example" from that location:</p> -<pre class="prettyprint lang-config"> - AddHandler example-handler .example -</pre> +<pre class="prettyprint lang-config"> AddHandler example-handler .example</pre> <p>After reloading/restarting your server, you should be able |