QUIC.cloud CDN affects domain redirects?
-
I am using the QUIC.cloud CDN and wanted to know if any of its possible configurations could affect the domain redirects on my website.
The canonical URL is https://www.fotov60.com, and I’m trying to achieve the following redirection using the .htaccess file:
http://fotov60.com 301 Moved Permanently https://www.fotov60.com/ 200 OK
instead of
http://fotov60.com 301 Moved Permanently https://fotov60.com/ 301 Moved Permanently https://www.fotov60.com/ 200 OK
The problem is that even though I add the following code:
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST} ^fotov60\.com$ [NC] RewriteRule ^(.*)$ https://www.fotov60.com/$1 [L,R=301] </IfModule>
I’m still getting the following result:
http://fotov60.com 301 Moved Permanently https://fotov60.com/ 301 Moved Permanently https://www.fotov60.com/ 200 OK
I contacted my hosting provider, and they mentioned that the CDN QUIC.cloud might be causing this intermediate redirection. Is this possible? If so, how can I resolve it?
The page I need help with: [log in to see the link]
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘QUIC.cloud CDN affects domain redirects?’ is closed to new replies.