"http://"是協議名"www.test.com"是網域名稱
"aaa"是站點名
"bbb.aspx"是頁面名(檔名)
"id=5&name=kelli"是引數
//獲取 完整url (協議名+網域名稱+站點名+檔名+引數)
string url = request.url.tostring();
url = "";
//獲取 站點名+頁面名+引數:
string url = request.rawurl;
string url = request.url.pathandquery;
url= "/aaa/bbb.aspx?id=5&name=kelli";
//獲取 站點名+頁面名:
string url = request.url.absolutepath;
string url = request.path;
url= "aaa/bbb.aspx";
//獲取 網域名稱:
string url = request.url.host;
url= "www.test.com";
//獲取 引數:
string url = request.url.query;
url= "?id=5&name=kelli";
//如果有埠的話
//獲得**訪問**位址
//或者
request.urlreferrer
ajax獲取伺服器當前時間
通過ajax獲取response header 上的date值,注意時區,在chrome 開發工具header中看到的均為格林威治時間,比北京時間小8個小時,獲取的時區與伺服器端設定有關係。從response header中獲取伺服器當前時間,不存在有快取時的問題 另外,通過jquery的ajax方...
php獲取當前網頁位址,獲取伺服器,獲取目錄
判斷是否為https return bool 是https返回true 否則返回false 獲取網域名稱或主機位址 獲取網頁位址 echo server php self blog testurl.php 獲取 引數 echo server query string id 5 獲取使用者 獲取完整的...
PHP獲取當前網域名稱
server server name 獲取當前網域名稱 不含埠號 server http host 獲取當前網域名稱 含埠號 server request uri 獲取當前網域名稱的字尾 網域名稱後面部分 獲取完整的url 包含埠號的完整url 獲取使用者 獲取 引數 echo server que...