Merge pull request #43 from silverstripe/frameworkrewrite

Fixes to framework rewrite
This commit is contained in:
Cam Findlay 2015-01-21 15:12:26 +13:00
commit 2cb73240b8
1 changed files with 4 additions and 0 deletions

View File

@ -16,6 +16,10 @@
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !^framework/main\.php
RewriteRule ^sapphire/?(.*) http://doc.silverstripe.org/framework/$1 [R=301,L]
#Rewrite framework to the new base url
RewriteCond %{REQUEST_URI} ^/?framework/en/
RewriteRule ^framework/en/(.*)$ /en/$1 [R=301,NC,QSA,L]
# DokuWiki rewrite rules: Need to happen before other rules in order to redirect /doku.php?id=<pagename>
# to /pagename, which can then be matched by the legacy rewrite rules further down