summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md51
1 files changed, 0 insertions, 51 deletions
diff --git a/README.md b/README.md
index 357a1c5..36107bf 100644
--- a/README.md
+++ b/README.md
@@ -22,57 +22,6 @@ The following apache mods are required:
The following apache directives are required, on the document root:
- ##
- ## PERMISSIONS
- ##
-
- AllowOverride None
- Order deny,allow
- Allow from all
-
- ##
- ## LOCALE SUPPORT (e.g. index.en.html)
- ##
-
- LanguagePriority en
- ForceLanguagePriority Prefer Fallback
- DirectoryIndex index
- Options +MultiViews
-
- ##
- ## REWRITES
- ##
-
- Options +FollowSymLinks
- RewriteEngine on
- #LogLevel alert rewrite:trace4
-
- #
- # Allow /:locale/ prefix path if the document exists
- # e.g. /de/blah/ ==> /blah/index.de.html
- #
-
- RewriteCond %{DOCUMENT_ROOT}/$2/index.$1.html -f
- RewriteRule ^([a-z]{2})/(.*) /$2/index.$1.html [L]
-
- RewriteCond %{DOCUMENT_ROOT}/index.$1.html -f
- RewriteRule ^([a-z]{2})$ /index.$1.html [L]
-
- #
- # Fall back to english if the document doesn't exist
- # e.g. /xx/blah ==> /blah/index.en.html
- #
-
- RewriteCond %{DOCUMENT_ROOT}/$2/index.$1.html !-f
- RewriteRule ^([a-z]{2})/(.*) /$2/index.en.html [L]
-
- RewriteCond %{DOCUMENT_ROOT}/index.$1.html !-f
- RewriteRule ^([a-z]{2})$ /index.en.html [L]
-
- ##
- ## Index Directories
- ##
-
Options +Indexes
IndexOptions +FancyIndexing +Charset=UTF-8
IndexOptions +SuppressRules +SuppressDescription +NameWidth=*