本篇文章為大家展示了怎么在Apache環(huán)境中強(qiáng)制跳轉(zhuǎn)到https,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
皇姑網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián)公司,皇姑網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為皇姑上1000家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)營(yíng)銷(xiāo)網(wǎng)站建設(shè)要多少錢(qián),請(qǐng)找那個(gè)售后服務(wù)好的皇姑做網(wǎng)站的公司定做!
1、在httpd-ssl.conf中
DocumentRoot "D:/web/xxx" ServerName xxx.com:443 ServerAdmin admin@example.com ErrorLog "D:/xampp/apache/logs/xxx_https_error.log" TransferLog "D:/xampp/apache/logs/xxx_https_access.log"
2、在httpd-vhosts.conf文件的虛擬域名配置增加以下內(nèi)容:
RewriteEngine on RewriteCond %{HTTPS} !=on RewriteRule ^(.*) https://%{SERVER_NAME}$1 [L,R]
這樣,當(dāng)輸入 www.xxx.com 訪問(wèn)網(wǎng)站時(shí),會(huì)自動(dòng)跳轉(zhuǎn)到 https://www.xxx.com
完整的
Options FollowSymLinks Includes ExecCGI AllowOverride All Require all granted ServerAdmin 877040117@qq.com DocumentRoot "D:/web/xxx" ServerName www.xxx.com RewriteEngine on RewriteCond %{HTTPS} !=on RewriteRule ^(.*) https://%{SERVER_NAME}$1 [L,R] ErrorLog "logs/xxx-error.log" CustomLog "logs/xxx-access.log" common
上述內(nèi)容就是怎么在Apache環(huán)境中強(qiáng)制跳轉(zhuǎn)到https,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。