建議使用notepad++工具,當(dāng)然新建文本文檔也可實(shí)現(xiàn),但是可能會(huì)存在無(wú)效的問(wèn)題,當(dāng)然是少數(shù)情況
.
將不帶WWW.的
域名跳轉(zhuǎn)到帶WWW.的標(biāo)準(zhǔn)格式:
RewriteEngine On
RewriteCond %{http_host} ^mfisp.com$ [NC]
RewriteRule ^(.*)$ http://www.qzkangyuan.com/$1 [R=301,L]
將網(wǎng)址帶index.php跳轉(zhuǎn)到不帶index.php的標(biāo)準(zhǔn)域名:
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9} /index.php HTTP/
RewriteRule ^index.php$ http://www.qzkangyuan.com/ [R=301,L]
將網(wǎng)址帶index.html跳轉(zhuǎn)到不帶index.html的標(biāo)準(zhǔn)域名:
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9} /index.html HTTP/
RewriteRule ^index.html$ http://www.qzkangyuan.com/ [R=301,L]
將里面網(wǎng)址改好后保存文件為.htaccess放到
服務(wù)器的網(wǎng)站根目錄下即可實(shí)現(xiàn)。