I just backup wordpress DB and public_html folder in virtual-web-hosting.
And I move them to my local MAMP.
But when I enter http://localhost:8888/, it just transfer to http://localhost.
And the error message (GET http://localhost/ net::ERR_CONNECTION_REFUSED)
shows in chrome.
Could some one give me some hint?
I had tried to put a dummy index.php with echo "debug" in /htdoc/test
and then connected to http://localhost:8888/test, it shows "debug" just as expected.
Thanks.
get http://localhost
implies you're running a proxy, and telling the proxy to fetch an "external" url. a normal non-proxied http request would beGET /
– Kept