關於網域介紹:
一般來說,一個完整的網域是用二個或二個以上部分組成,各部分之間用英文的句號「.」開分割。如“www.baidu.com”,其中最後一個“.”的右邊部分“.com”成為頂級域名(TLD,也成為一級域名,類似還有.cn,.net,.org,.gov,. edu,.tv等等,這裡.com.cn其實是.cn下的二級網域)。任何個人都可以註冊一個.com域名,其中baidu.com也就是頂級域名.com下的二級域名,baidu.com還可以有image.baidu.com、music.baidu.com的形式,這裡的imagemusic可以稱為「子網域」;
二級網域和子網域的Apache配置:
進入Apache-conf-extra-httpd-vhost.conf,新增以下設定:
<span style="color: #0000ff;"><</span><span style="color: #800000;">VirtualHost </span><span style="color: #ff0000;">*:80</span><span style="color: #0000ff;">></span><span style="color: #000000;"> DocumentRoot "E:/wamp/www/galaxyPHP/" ServerName testimmi.com ServerAlias m.testimmi.com </span><span style="color: #0000ff;"><</span><span style="color: #800000;">Directory </span><span style="color: #ff0000;">"E:/wamp/www/galaxyPHP/"</span><span style="color: #0000ff;">></span><span style="color: #000000;"> Allow from all </span><span style="color: #0000ff;"></</span><span style="color: #800000;">Directory</span><span style="color: #0000ff;">></span> <span style="color: #0000ff;"><</span><span style="color: #800000;">IfModule </span><span style="color: #ff0000;">dir_module</span><span style="color: #0000ff;">></span><span style="color: #000000;"> DirectoryIndex mobile.php index.html index.htm default.php default.htm default.html </span><span style="color: #0000ff;"></</span><span style="color: #800000;">IfModule</span><span style="color: #0000ff;">></span> <span style="color: #0000ff;"></</span><span style="color: #800000;">VirtualHost</span><span style="color: #0000ff;">></span> <span style="color: #0000ff;"><</span><span style="color: #800000;">VirtualHost </span><span style="color: #ff0000;">*:80</span><span style="color: #0000ff;">></span><span style="color: #000000;"> DocumentRoot "E:/wamp/www/galaxyPHP/" ServerName testimmi.com ServerAlias www.testimmi.com </span><span style="color: #0000ff;"><</span><span style="color: #800000;">Directory </span><span style="color: #ff0000;">"E:/wamp/www/galaxyPHP/"</span><span style="color: #0000ff;">></span><span style="color: #000000;"> Allow from all </span><span style="color: #0000ff;"></</span><span style="color: #800000;">Directory</span><span style="color: #0000ff;">></span> <span style="color: #0000ff;"><</span><span style="color: #800000;">IfModule </span><span style="color: #ff0000;">dir_module</span><span style="color: #0000ff;">></span><span style="color: #000000;"> DirectoryIndex index.php index.html index.htm default.php default.htm default.html </span><span style="color: #0000ff;"></</span><span style="color: #800000;">IfModule</span><span style="color: #0000ff;">></span> <span style="color: #0000ff;"></</span><span style="color: #800000;">VirtualHost</span><span style="color: #0000ff;">></span>
其中DocumentRoot就代表網站工程所在目錄,ServerName代表二級域名,ServerAlias就是別名(允許是完整二級域名(帶www.)或子域名),
在ThinkPHP工程中,透過這裡設定不同入口檔案index.php 、mobile.php可以方便區分不同的模組入口,結合.htaccess檔案最終達到可以簡化路由url的目的。
如果httpd-vhost.conf檔案設定不起作用,要注意兩點:
1、Apache設定檔httpd.conf中允許載入http-vhosts.conf模組:
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
2、開啟rewrite-module功能;
測試環境下,可以設定係統host文件,新增
192.168.1.122 testimmi.com
192.168.1.122 m.testimmi.com
192.168.1.122 www.testimmi.com
來模擬申請到二級域名的情況