文章轉(zhuǎn)自 http://www.prochao.com/articl...
對(duì)服務(wù)器 www.example.com和blog.example.com都做了DNS域名解釋,在服務(wù)器上能ping通。
(服務(wù)器供應(yīng)商一般都提供設(shè)置DNS域名解釋服務(wù),本地的修改hosts文件)
方法一
修改配置文件httpd.conf
1.注釋
#DocumentRoot "/usr/local/httpd/htdocs"
2.在文件最后處加上
NameVirtualHost *:80ServerAdmin [email protected] DocumentRoot "/usr/local/httpd/htdocs" ServerName www.example.com ErrorLog "/usr/local/httpd/logs/error.log" CustomLog "/usr/local/httpd/logs/custom.log" combined ServerAdmin [email protected] DocumentRoot "/usr/local/httpd/htdocs/blog" ServerName blog.example.com ErrorLog "/usr/local/httpd/logs/blog_error.log" CustomLog "/usr/local/httpd/logs/blog_custom.log" combined
3.重啟服務(wù)器成功
4.訪問www.example.com成功
5.訪問blog.example.com失敗 404NOT FOUND
6.最后檢查發(fā)現(xiàn)再配置文件上面 有一行 ServerAdmin you@example .com,將其注釋再重啟服務(wù)器則訪問成功
#ServerAdmin [email protected]
方法二
1.將httpd.conf配置文件的兩行注釋
#DocumentRoot "/usr/local/httpd/htdocs" #ServerAdmin [email protected]
2.然后引入虛擬服務(wù)器配置文件,打開Virtual hosts下面的Include注釋
# Virtual hosts Include conf/extra/httpd-vhosts.conf
3.在配置文件 conf/extra/httpd-vhosts.conf同樣加入如下內(nèi)容
NameVirtualHost *:80ServerAdmin [email protected] DocumentRoot "/usr/local/httpd/htdocs" ServerName www.example.com ErrorLog "/usr/local/httpd/logs/error.log" CustomLog "/usr/local/httpd/logs/custom.log" combined ServerAdmin [email protected] DocumentRoot "/usr/local/httpd/htdocs/blog" ServerName blog.example.com ErrorLog "/usr/local/httpd/logs/blog_error.log" CustomLog "/usr/local/httpd/logs/blog_custom.log" combined
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/35798.html
摘要:虛擬主機(jī)域名配置服務(wù)器中有兩個(gè)不同的項(xiàng)目和,我們需要把頂級(jí)域名綁定到項(xiàng)目,將二級(jí)域名綁定到項(xiàng)目中。域名解析首先,在對(duì)服務(wù)器進(jìn)行配置之前,先確保你的域名已經(jīng)進(jìn)行正確的解析。主機(jī)記錄說明要將域名解析為,在主機(jī)記錄處填寫即可。 Apache虛擬主機(jī)域名配置 服務(wù)器中有兩個(gè)不同的項(xiàng)目siteA和siteB,我們需要把頂級(jí)域名www.siteA.com綁定到項(xiàng)目siteA,將二級(jí)域名siteB....
摘要:一般情況下,經(jīng)過上面的步驟之后,網(wǎng)站基本上可以搭建成功。當(dāng)然,在日常的實(shí)際操作中,可能還會(huì)有一些意想不到的情況發(fā)生,到時(shí)候就考驗(yàn)我們解決問題的能力了。參考文章添加用戶刪除用戶與授權(quán)設(shè)置遠(yuǎn)程訪問的指令詳解的詳解 原文是在我自己博客中,小伙伴也可以點(diǎn)閱讀原文進(jìn)行跳轉(zhuǎn)查看,還有好聽的背景音樂噢~ showImg(https://segmentfault.com/img/remote/1460...
摘要:網(wǎng)站優(yōu)化之轉(zhuǎn)向中應(yīng)該怎么設(shè)置轉(zhuǎn)向呢今天冬鏡就為大家一一講解轉(zhuǎn)向中會(huì)遇到的情況,并給予相對(duì)應(yīng)的解決方案,主要以來演示。網(wǎng)站優(yōu)化之轉(zhuǎn)向,應(yīng)注意這幾點(diǎn)其中表示開始,或者說從根目錄,也代表當(dāng)前的域名的意思,反正你理解是那一回事就行。今天一位站長(zhǎng)朋友咨詢301問題,本來以為很簡(jiǎn)單的,沒注意到其中的細(xì)節(jié),從而導(dǎo)致冬鏡花費(fèi)了一點(diǎn)時(shí)間才解決了?,F(xiàn)在給大家分享出來,希望以后的站長(zhǎng)朋友再遇到此類問題,就可以避免...
閱讀 2856·2023-04-26 01:02
閱讀 1884·2021-11-17 09:38
閱讀 808·2021-09-22 15:54
閱讀 2912·2021-09-22 15:29
閱讀 903·2021-09-22 10:02
閱讀 3456·2019-08-30 15:54
閱讀 2021·2019-08-30 15:44
閱讀 1607·2019-08-26 13:46