我想在我的应用程序用户访问登录页面时将他们重定向到 HTTPS 协议。网址是这样的:
http://localhost/default/Login
我在我的 apache conf 文件中写了下面的重写规则(请注意,我只想从 conf 文件而不是从 .htaccess 中执行此操作)
RewriteEngine on
RewriteCond %{HTTPS} !=on
RewriteRule ^/Login$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
此重定向不起作用,我无法找出原因。也尝试过打印重写日志,但也无法从中进行调试。
请让我知道我做错了什么。