summaryrefslogtreecommitdiffstats
path: root/user_guide_src
diff options
context:
space:
mode:
authorinsign <insign@gmail.com>2012-01-09 21:07:34 +0100
committerinsign <insign@gmail.com>2012-01-09 21:07:34 +0100
commit5287f6643f5ca55c360a6372c526c8c06c0c4912 (patch)
treef4cd9c870cfbb82ad4b29992cb3a6192fbbc992c /user_guide_src
parente9a5a862a1252548b463aa738e50e8d9bfd01379 (diff)
Removed the first slash of the line 51. With this, the goal of the code don't work. I tried it in many Apache servers. Sorry if I am wrong.
Diffstat (limited to 'user_guide_src')
-rw-r--r--user_guide_src/source/general/urls.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide_src/source/general/urls.rst b/user_guide_src/source/general/urls.rst
index 3126fcf36..857078b1c 100644
--- a/user_guide_src/source/general/urls.rst
+++ b/user_guide_src/source/general/urls.rst
@@ -48,7 +48,7 @@ method in which everything is redirected except the specified items:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
- RewriteRule ^(.*)$ /index.php/$1 [L]
+ RewriteRule ^(.*)$ index.php/$1 [L]
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.