【发布时间】:2021-07-06 19:37:48
【问题描述】:
我不明白问题出在哪里。正如hosting site 所建议的那样,我使用了一个.htaccess 文件,它允许我从http 重定向到https,并且在桌面上它似乎工作得很好。但是在移动设备上没有浏览器正确重定向,有人可以启发我吗?
这是htaccess文件的内容
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteCond %{HTTP:X-Forwarded-Proto} !^https$
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>
【问题讨论】:
标签: apache .htaccess redirect hosting