Czy serwer faktycznie otrzymuje żądania i czy poprawnie obsługujesz nazwę hosta (alias)?
po dodaniu do mojego pliku .hosts
Sprawdź dziennik serwera internetowego, aby zobaczyć, jak otrzymano żądanie ...
curl ma opcje zrzutu wysłanego żądania, a otrzymana odpowiedź nazywa się śledzeniem, która zostanie zapisana do pliku.
--ślad
Jeśli brakuje informacji o hoście lub nagłówku - możesz wymusić te nagłówki za pomocą opcji config.
Otrzymywałbym żądanie curl działające w wierszu poleceń, a następnie próbowałbym zaimplementować je w PHP.
opcja konfiguracji to
-K / - config
opcje, które są istotne w curl są tutaj
--trace Włącza pełny zrzut śledzenia wszystkich danych przychodzących i wychodzących, w tym informacji opisowych, do danego pliku wyjściowego. Użyj "-" jako nazwy pliku, aby dane wyjściowe były wysyłane na standardowe wyjście.
This option overrides previous uses of -v/--verbose or --trace-ascii.
If this option is used several times, the last one will be used.
-K / - config Określa, z którego pliku konfiguracyjnego mają być odczytywane argumenty curl. Plik konfiguracyjny to plik tekstowy, w którym można zapisać argumenty wiersza poleceń, które następnie zostaną użyte tak, jakby zostały zapisane w rzeczywistym wierszu poleceń. Opcje i ich parametry muszą być określone w tym samym wierszu pliku konfiguracyjnego, oddzielone białymi znakami, dwukropkiem, znakiem równości lub dowolną ich kombinacją (jednak preferowanym separatorem jest znak równości). Jeśli parametr ma zawierać spacje, musi być ujęty w cudzysłów. W cudzysłowach dostępne są następujące sekwencje specjalne: \, \ ", \ t, \ n, \ r i \ v. Ukośnik odwrotny poprzedzający jakąkolwiek inną literę jest ignorowany. Jeśli pierwszą kolumną wiersza konfiguracji jest znak„ # ” znak, reszta linii będzie traktowana jako komentarz.
Specify the filename to -K/--config as '-' to make curl read the file from stdin.
Note that to be able to specify a URL in the config file, you need to specify it using the --url option, and not by simply writing the URL on its own line. So, it could look similar to this:
url = "http://curl.haxx.se/docs/"
Long option names can optionally be given in the config file without the initial double dashes.
When curl is invoked, it always (unless -q is used) checks for a default config file and uses it if found. The default config file is checked for in the following places in this order:
1) curl tries to find the "home dir": It first checks for the CURL_HOME and then the HOME environment variables. Failing that, it uses getpwuid() on UNIX-like systems (which returns the home dir
given the current user in your system). On Windows, it then checks for the APPDATA variable, or as a last resort the '%USERPROFILE%\Application Data'.
2) On windows, if there is no _curlrc file in the home dir, it checks for one in the same dir the curl executable is placed. On UNIX-like systems, it will simply try to load .curlrc from the deter-
mined home dir.
# --- Example file ---
# this is a comment
url = "curl.haxx.se"
output = "curlhere.html"
user-agent = "superagent/1.0"
# and fetch another URL too
url = "curl.haxx.se/docs/manpage.html"
-O
referer = "http://nowhereatall.com/"
# --- End of example file ---
This option can be used multiple times to load multiple config files.