diff options
author | Andrey Andreev <narf@devilix.net> | 2017-07-21 10:51:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-21 10:51:37 +0200 |
commit | b7ae9d4cd171e1674022c95100798cc7ada7572a (patch) | |
tree | 6fe5c2bc7f1dfb6390afd4283a3ddd57233acffe /user_guide_src/source/general | |
parent | 4aaa9072fc40c9c10bb1501a86505666939deb7d (diff) | |
parent | 3b490ef66741ff6e822ac641df52f44c17936d97 (diff) |
[ci skip] Merge pull request #5191 from jim-parry/patch/docs
Fix some mistakes in the user guide
Diffstat (limited to 'user_guide_src/source/general')
-rw-r--r-- | user_guide_src/source/general/urls.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/user_guide_src/source/general/urls.rst b/user_guide_src/source/general/urls.rst index ca44e2f4c..e23554907 100644 --- a/user_guide_src/source/general/urls.rst +++ b/user_guide_src/source/general/urls.rst @@ -42,10 +42,10 @@ By default, the **index.php** file will be included in your URLs:: If your Apache server has *mod_rewrite* enabled, you can easily remove this file by using a .htaccess file with some simple rules. Here is an example of such a file, using the "negative" method in which everything is redirected -except the specified items: - -:: +except the specified items:: +.. code-block:: console + RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d |