Additional Redirect Appearing
-
Hi,
We’ve checked through this set up with our devs & server guys and it seems that maybe this plugin is causing an additional redirect in the chain. We are not sure why and were hoping someone could maybe help please..The additional redirect is the ? parameter one in the middle.
URL causing the issue:
301 http://www.ozhosting.com.au/email-and-applications/office-365/ 104.25.190.21 server_redirect permanent https://www.ozhosting.com.au/email-and-applications/office-365/
301 https://www.ozhosting.com.au/email-and-applications/office-365/ 104.25.190.21 server_redirect permanent https://www.ozhosting.com.au/email/office-365/?q=/email-and-applications/office-365/
301 https://www.ozhosting.com.au/email/office-365/?q=/email-and-applications/office-365/ 104.25.190.21 server_redirect permanent https://www.ozhosting.com.au/email/office-365/
200 https://www.ozhosting.com.au/email/office-365/ 104.25.190.21 normal none none
Script in place:
if ($scheme != https) {
return 301 https://www.ozhosting.com.au$request_uri;
}if ($query_string ~ “^(.*)q=(.*)$”) {
rewrite ^(.*)$ $uri? permanent;
}if (!-e $request_filename)
{
rewrite ^(.+)$ /index.php?q=$1 last;
}
The topic ‘Additional Redirect Appearing’ is closed to new replies.