Skip to content

faster redirects with correct order

this includes reverted? !542 (merged) and these changes about redirects:

a) priority: in case there is a website with a seo_redirect of ' to domain'* and a redirect of one domain to a specific path, the redirect should happen before the seo_redirect. in general the priority of redirects should be: 1) redirects 2) seo redirects 3) alias seo redirects 4) http to https redirects. 2) and 3) implicitly performs 4)

b) performance:

#this is faster
RewriteRule ^ http://something%{REQUEST_URI}
#than this
RewriteRule ^(*.)$ http://something$1

Merge request reports