diff options
author | Christian Weiske <cweiske@cweiske.de> | 2013-03-18 23:04:49 +0100 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2013-03-18 23:06:53 +0100 |
commit | 409b7e681d93e7c746ed4e3487fbf7f0de5fd116 (patch) | |
tree | e26a2cbc7abbcd526353cf74d954777f21d57eef /doc/configuration.rst | |
parent | 326bca97316f66a9ec511275e2971a5067c924ab (diff) | |
download | semanticscuttle-409b7e681d93e7c746ed4e3487fbf7f0de5fd116.tar.gz semanticscuttle-409b7e681d93e7c746ed4e3487fbf7f0de5fd116.tar.bz2 |
Fix bug #110: Talk about searching for slashes
Diffstat (limited to 'doc/configuration.rst')
-rw-r--r-- | doc/configuration.rst | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/configuration.rst b/doc/configuration.rst index c8a8bd9..dd0fb5e 100644 --- a/doc/configuration.rst +++ b/doc/configuration.rst @@ -79,3 +79,20 @@ or:: $root = "http://bookmarks.example.org/"; + +Common problems +=============== +Searching for words with slashes "/" does not work +-------------------------------------------------- +When searching for a phrase with a slash in it, like "foo/bar", you +may get a 404 error. + +In that case, you need to enable AllowEncodedSlashes__ in your Apache +virtual host configuration:: + + AllowEncodedSlashes NoDecode + +Restart apache after changing the vhost config file. +Searching will work now. + +__ http://httpd.apache.org/docs/2.2/mod/core.html#allowencodedslashes |