क्या सर्वर वास्तव में अनुरोध प्राप्त करता है, और क्या आप होस्ट नाम (उपनाम) को ठीक से संभाल रहे हैं?
मेरे .hosts फ़ाइल में जोड़ने के बाद
अनुरोध कैसे आया, यह देखने के लिए अपने वेबसर्वर लॉग की जाँच करें ...
कर्ल में भेजे गए अनुरोध को डंप करने के लिए विकल्प हैं, और प्राप्त प्रतिक्रिया, इसे ट्रेस कहा जाता है, जिसे एक फ़ाइल में सहेजा जाएगा।
--trace
यदि आप होस्ट या हेडर जानकारी याद कर रहे हैं - तो आप उन हेडर को कॉन्फिगर विकल्प के साथ बाध्य कर सकते हैं।
मुझे कमांड लाइन पर काम करने का कर्ल अनुरोध मिलेगा, और फिर PHP में लागू करने का प्रयास करेंगे।
विन्यास विकल्प है
कश्मीर / - config
कर्ल में प्रासंगिक विकल्प यहां हैं
-ट्रेस दी गई आउटपुट फ़ाइल में, विवरणात्मक जानकारी सहित सभी इनकमिंग और आउटगोइंग डेटा का एक पूर्ण ट्रेस डंप सक्षम करता है। का उपयोग करें "-" फ़ाइल नाम के रूप में उत्पादन करने के लिए भेजा stdout।
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 निर्दिष्ट करें कि कर्ल तर्कों को पढ़ने के लिए कौन सी फ़ाइल को कॉन्फ़िगर करें। कॉन्फ़िग फ़ाइल एक टेक्स्ट फ़ाइल है जिसमें कमांड लाइन तर्क लिखे जा सकते हैं जो तब उपयोग किए जाएंगे जैसे कि वे वास्तविक कमांड लाइन पर लिखे गए थे। विकल्प और उनके मापदंडों को एक ही कॉन्फिग फ़ाइल लाइन पर निर्दिष्ट किया जाना चाहिए, जिसे व्हाट्सएप, कोलोन द्वारा अलग किया जाता है, बराबर चिह्न या इसके किसी भी संयोजन (हालांकि, पसंदीदा सेपर-टोर बराबर चिह्न है)। यदि पैरामीटर में व्हॉट्सएप शामिल है, तो पैरामीटर को उद्धरण के भीतर संलग्न किया जाना चाहिए। दोहरे उद्धरण चिह्नों के भीतर, निम्नलिखित एस्केप सीक्वेंस उपलब्ध हैं: \ ", \", \ t, \ n, \ r और \ v। किसी भी अन्य अक्षर से पहले के बैकस्लैश को नजरअंदाज कर दिया जाता है। यदि एक कॉन्फिग लाइन का पहला कॉलम '#' है। चरित्र, शेष पंक्ति को एक टिप्पणी के रूप में माना जाएगा।
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.