2014-01-20 105 views
1

我在我的電腦上遇到了幾個DNS本地主機問題。找不到本地主機(404)iis

某些說明會重定向我的所有探索者,包括Visual Studio在127.0.0.1以外的其他位置,當我在Visual Studio或任何瀏覽器查找本地主機時。

哪裏會發生這種事情?我最近把hosts文件改成了指向其他地方的本地主機,但之後它沒有工作,所以我將它切換回來,所以不能成爲問題。

# Copyright (c) 1993-2009 Microsoft Corp. 
# 
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows. 
# 
# This file contains the mappings of IP addresses to host names. Each 
# entry should be kept on an individual line. The IP address should 
# be placed in the first column followed by the corresponding host name. 
# The IP address and the host name should be separated by at least one 
# space. 
# 
# Additionally, comments (such as these) may be inserted on individual 
# lines or following the machine name denoted by a '#' symbol. 
# 
# For example: 
# 
#  102.54.94.97  rhino.acme.com   # source server 
#  38.25.63.10  x.acme.com    # x client host 

# localhost name resolution is handled within DNS itself. 
127.0.0.1 localhost 
::1 localhost 

我也unistalled和安裝IIS,所以不是IIS不能正確重定向問題..

我不能夠運行,因爲這個問題的Visual Studio解決方案。

我試過pining 127.0.0.1,它響應,我也嘗試了localhost,它也可以,但是當我在瀏覽器中輸入localhost時,它會重定向到「404」頁面。

+1

先嚐試cmd ipconfig/flushdns。我不認爲這是問題,但爲了防止這種情況發生,它可以爲您節省大量時間。如果它沒有幫助,請打開IIS並檢查您的網站是否仍然(存在並且)在端口80上具有綁定。另請檢查您的應用程序池是否仍然存在並且正在運行。 – tweray

+0

我無法從Visual Studio(我的ide)將應用程序添加到IIS的應用程序池中,因爲它無法找到本地主機。這應該是iis正在聆聽的內容,將嘗試您的選項艱難 –

+1

ipconfig/flushdns沒有工作.. –

回答

0

確保IIS實際配置爲偵聽127.0.0.1(也許你刪除以前的綁定?)

netsh http show iplisten
IP addresses present in the IP listen list: 127.0.0.1

您可以添加額外的IP地址,像這樣:

netsh http add iplisten ipaddress=10.0.0.10

相關問題