您好,登錄后才能下訂單哦!
配置域名301跳轉(zhuǎn)
在有兩個(gè)域名的情況下我們需要設(shè)置一個(gè)主域名(將次域名跳轉(zhuǎn)到主域名下),操作命令如下:
vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
在 # CustomLog "logs/dummy-host.example.com-access_log" common下面一行添加如下:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.aaa.com$
RewriteRule ^/(.*)$ http://www.test.com/%1 [R=301,L]
</IfModule>
保存退出
#跳轉(zhuǎn)301永久重定向 域名跳轉(zhuǎn)一定要用301,對(duì)瀏覽器有好處
跳轉(zhuǎn)302表示臨時(shí)重定向
apachectl -M #觀察rewrite_module模塊是否加載
apachectl -t
apachectl restart
curl -x192.168.1.113 :80 www.aaa.com/dsgsdgsdfg -I #測(cè)試域名是否正常跳轉(zhuǎn)
不止有兩個(gè)域名的情況操作如下:
vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
添加:
i
RewriteCond %{HTTP_HOST} ^www.aaa.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.bbb.com$
保存退出
apachectl -t
apachectl restart
curl -x192.168.1.113 :80 www.bbb.com/asllsdfsf -I
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。