summaryrefslogtreecommitdiffstats
path: root/user_guide_src/source/general/urls.rst
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-02-01 23:48:11 +0100
committerAndrey Andreev <narf@bofh.bg>2012-02-01 23:48:11 +0100
commit247e122495af3bb5fcd144df89efe9433ca1e31f (patch)
treee79ade1671449820e4e15abe62e2ad1bdaa6f473 /user_guide_src/source/general/urls.rst
parenta3d19c4ac63c4af1c2b823b0962e6be79e89d186 (diff)
parent27c80af1dd9b871ab44452a8de22fd9cabaa184c (diff)
Merge remote-tracking branch 'upstream/develop' into develop-image-lib
Diffstat (limited to 'user_guide_src/source/general/urls.rst')
-rw-r--r--user_guide_src/source/general/urls.rst9
1 files changed, 6 insertions, 3 deletions
diff --git a/user_guide_src/source/general/urls.rst b/user_guide_src/source/general/urls.rst
index 857078b1c..6b390b559 100644
--- a/user_guide_src/source/general/urls.rst
+++ b/user_guide_src/source/general/urls.rst
@@ -39,9 +39,10 @@ By default, the **index.php** file will be included in your URLs::
example.com/index.php/news/article/my_article
-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:
+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:
::
@@ -53,6 +54,8 @@ method in which everything is redirected except the specified items:
In the above example, any HTTP request other than those for existing
directories and existing files is treated as a request for your index.php file.
+.. note:: Note: These specific rules might not work for all server configurations.
+
Adding a URL Suffix
===================