Links like
https://demo.ghost.io//welcome/////
open without redirecting to https://demo.ghost.io/welcome/. How it can be fixed?
Links like
https://demo.ghost.io//welcome/////
open without redirecting to https://demo.ghost.io/welcome/. How it can be fixed?
That’s a proxy related question. Nginx could be the tool you are looking for 
Yep, i just put
if ($request_uri ~* "\/\/") {
rewrite ^/(.*) $scheme://$host/$1 permanent;
}
in my nginx.conf 