diff options
author | Master Yoda <jim_parry@bcit.ca> | 2017-07-20 13:58:16 +0200 |
---|---|---|
committer | Master Yoda <jim_parry@bcit.ca> | 2017-07-20 13:58:16 +0200 |
commit | 30f15f9317b5df49ebe880a423a317b045a495eb (patch) | |
tree | 50c2c9027a25734eb0b2ab43127a397ae9762fe4 /user_guide_src/source/general | |
parent | f107a186f0ddd5695c142c3202106bea4cd4b226 (diff) |
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 | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/user_guide_src/source/general/urls.rst b/user_guide_src/source/general/urls.rst index ca44e2f4c..b2b90ba39 100644 --- a/user_guide_src/source/general/urls.rst +++ b/user_guide_src/source/general/urls.rst @@ -42,13 +42,11 @@ 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:: RewriteEngine On - RewriteCond %{REQUEST_FILENAME} !-f - RewriteCond %{REQUEST_FILENAME} !-d + RewriteCond %{REQUEST_FILENAME} -f [OR] + RewriteCond %{REQUEST_FILENAME} -d [OR] RewriteRule ^(.*)$ index.php/$1 [L] In the above example, any HTTP request other than those for existing |