本文介绍了迫使一个页面使用HTTPS和其他人使用HTTP使用的.htaccess的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图迫使一个页面总是使用https它不工作
该网址
和我有的.htaccess
RewriteEngine叙述在
的RewriteCond%{} HTTPS关闭
重写规则^ $预订https://www.example.com/bookings [L,R = 301]
解决方案
在你的根试试这个规则的作为你的第一个规则 的.htaccess
RewriteEngine叙述在的RewriteCond%{} HTTPS关闭
重写规则^订票/ $的https://%{HTTP_HOST}%{REQUEST_URI} [R = 302,L,NE,NC]
I am trying to force one page to always use https it is not working
The url http://www.example.com/bookings/
and the .htaccess that I have
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^bookings$ https://www.example.com/bookings [L,R=301]
解决方案
Try this rule as your very first rule in your root .htaccess
:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^bookings/?$ https://%{HTTP_HOST}%{REQUEST_URI} [R=302,L,NE,NC]
这篇关于迫使一个页面使用HTTPS和其他人使用HTTP使用的.htaccess的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!