summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2012-01-10 21:14:35 +0100
committerPhil Sturgeon <email@philsturgeon.co.uk>2012-01-10 21:14:35 +0100
commit1e42cdc1d3b4c919e0e4dec6a2ce81c360e946af (patch)
treef6343f6a8f78bf26f0fe55a00939d0dc660705f6
parentb790371f328e49ed57eda85bf33817e033b85601 (diff)
parent5287f6643f5ca55c360a6372c526c8c06c0c4912 (diff)
Merge pull request #908 from insign/patch-1
User Guide example for htaccess assumed root
-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.