Redirect issue

simonho17

New member
Joined
Oct 6, 2017
Messages
4
I have a domain name (stores100.com) which using the Shopline platforms, it seems redirect successfully,

However when I type "http://stores100.com" in the URL bar the redirect is not performed and show "This website is temporarily unavailable".

In the DirectAdmin section I have follow the instructions told by Shopline, added a Site Redirection entry type:301 redirect URL https://www.stores100.com, it still failed to land to https://www.stores100.com.

Should I miss some process , and I found some of the forum said is about the cert, is it mean that I miss the cert when I buy the domain?


Can you please advise? Thanks a lot.
 
Edit: my mistake, that is indeed not working. Didn't get the issue correctly but with Alex's comment I did.
 
Last edited:
I see the error "This website is temporarily unavailable, please try again later." when trying to connect to a version without www over http. You need to check logs for clues.

You might have infinite loops:

Code:
# curl -i http://stores100.com/
HTTP/1.1 302 Found
Connection: close
Pragma: no-cache
cache-control: no-cache
Location: /TWmTY/


# curl -i http://stores100.com/TWmTY/
HTTP/1.1 302 Found
Connection: close
Pragma: no-cache
cache-control: no-cache
Location: /ZpiSj/TWmTY/


# curl -i http://stores100.com/ZpiSj/TWmTY/
HTTP/1.1 302 Found
Connection: close
Pragma: no-cache
cache-control: no-cache
Location: /TWmTY/
 
I see the error "This website is temporarily unavailable, please try again later." when trying to connect to a version without www over http. You need to check logs for clues.

You might have infinite loops:

Code:
# curl -i http://stores100.com/
HTTP/1.1 302 Found
Connection: close
Pragma: no-cache
cache-control: no-cache
Location: /TWmTY/


# curl -i http://stores100.com/TWmTY/
HTTP/1.1 302 Found
Connection: close
Pragma: no-cache
cache-control: no-cache
Location: /ZpiSj/TWmTY/


# curl -i http://stores100.com/ZpiSj/TWmTY/
HTTP/1.1 302 Found
Connection: close
Pragma: no-cache
cache-control: no-cache
Location: /TWmTY/

But why my redirect path setting is 301 and now is 302?
 
Hi Alex, can you explain more about on the checking or what should I really can do to change the domain without http correctly, Many Thanks
 
I don't know what software or what applications creates redirects. So you need to check it on your own. Check .htaccess file, your PHP application settings.

Code:
# curl -i http://stores100.com/
HTTP/1.1 302 Moved Temporarily
Date: Wed, 18 Oct 2017 20:07:43 GMT
Pragma: no-cache
Cache-Control: no-cache
Location: /UghVh/
X-Cache: MISS from rknproxy
X-Cache-Lookup: MISS from rknproxy:0
Transfer-Encoding: chunked
Via: 1.1 rknproxy (squid/3.3.8)
Connection: keep-alive

If you want me to check it on your server I will charge for it.
 
Back
Top