Nginx: Changed inefficient RegEx redirect to equivalent 301
This commit is contained in:
@@ -427,7 +427,7 @@ class nginx extends HttpConfigBase {
|
|||||||
if (substr($uri, -1) == '/') {
|
if (substr($uri, -1) == '/') {
|
||||||
$uri = substr($uri, 0, -1);
|
$uri = substr($uri, 0, -1);
|
||||||
}
|
}
|
||||||
$vhost_content .= "\t".'rewrite ^(.*) '.$uri.'$1 permanent;'."\n";
|
$vhost_content .= "\t".'return 301 '.$uri.'$request_uri;'."\n";
|
||||||
} else {
|
} else {
|
||||||
mkDirWithCorrectOwnership($domain['customerroot'], $domain['documentroot'], $domain['guid'], $domain['guid'], true);
|
mkDirWithCorrectOwnership($domain['customerroot'], $domain['documentroot'], $domain['guid'], $domain['guid'], true);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user