You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
append *-Autosubdomains as last rules to rewrite rules
After this, it is possible to use both:
- sub.domain.tld
- *.domain.tld
together with different folders by rewrite (with rewrite_type = L for sub.domain.tld)
Before it was not clearified which rule matches first, it always dependet on the creation-time of the subdomain
Conflicts:
server/plugins-available/apache2_plugin.inc.php
@@ -1400,6 +1401,8 @@ function update($event_name, $data) {
1400
1401
} else {
1401
1402
$tpl->setVar('alias', '');
1402
1403
}
1404
+
1405
+
if (count($rewrite_wildcard_rules) > 0) $rewrite_rules = array_merge($rewrite_rules, $rewrite_wildcard_rules); // Append wildcard rules to the end of rules
0 commit comments