網(wǎng)站空間簡(jiǎn)單實(shí)現(xiàn)子目錄網(wǎng)站綁定方法
前提條件:網(wǎng)站空間支持.htaccess,WIN系統(tǒng)環(huán)境用戶支持httpd.ini
.htaccess文件內(nèi)容:
Rewriteengine on
DirectoryIndex home.html index.html index.php index.cgi
# A網(wǎng)站設(shè)置項(xiàng)
RewriteCond %{REQUEST_URI} !^/studstu/.*
RewriteCond %{HTTP_HOST} =www.studstu.com
RewriteRule ^(.*) /studstu/$1 [L]
# A網(wǎng)站二級(jí)域名設(shè)置項(xiàng)
RewriteCond %{REQUEST_URI} !^/studstu/blog/.*
RewriteCond %{HTTP_HOST} =blog.studstu.com
RewriteRule ^(.*) /studstu/blog/$1 [L]
# B網(wǎng)站設(shè)置項(xiàng)
RewriteCond %{REQUEST_URI} !^/71wl/.*
RewriteCond %{HTTP_HOST} =www.71wl.com
RewriteRule ^(.*) /71wl/$1 [L]
獨(dú)立IP空間用戶直接將所有域名解析到獨(dú)立IP即可實(shí)現(xiàn)不同域名訪問不同網(wǎng)站。
共享IP空間用戶將所有域名解析到共享IP后,再在根目錄空間綁定所有域名即可,跟多域名訪問同一網(wǎng)站情況一樣操作。生效后訪問不同域名實(shí)現(xiàn)訪問不同網(wǎng)站。
注:本文以.htaccess為例,httpd.ini的稍微轉(zhuǎn)換下即可,請(qǐng)自行操作。
復(fù)制本文《網(wǎng)站空間簡(jiǎn)單實(shí)現(xiàn)子目錄網(wǎng)站綁定方法》地址給好友: