apache 配置類比外網環境開發網站的方法

來源:互聯網
上載者:User

因為很多程式員在開發時都會在Apache指定的網站目錄下建一個檔案夾放網站,當在本機測試時就是輸入http://127.0.0.1/web1/這樣訪問網站,但上傳到網站後是用網域名稱的,這樣就會造成路徑不正確。
解決方案:
在C:\WINDOWS\system32\drivers\etc目錄下找到hosts檔案,用文本開啟,在裡面加一句
127.0.0.1 emtit.com
這樣你就可以不設DNS伺服器就可以用www.emtit.com訪問你的網站了,但這樣還不能到達你的虛擬目錄,開啟Apache的httpd.conf設定檔,在裡面加上下面的代碼

複製代碼 代碼如下:NameVirtualHost *:80
<VirtualHost *:80>
ServerAdmin hjwtp2005@163.com
DocumentRoot /flashgame
ServerName emtit.com
ServerAlias www.emtit.com
ErrorLog @rel_logfiledir@/dummy-host.example.com-error_log
CustomLog @rel_logfiledir@/dummy-host.example.com-access_log common
</VirtualHost>

這樣你就可以不設DNS就可以像訪問外網一樣訪問原生網站了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.