(我的网站上有一个重定向,将非 www 和非 https 用户重定向到https://www.frostriver.com 但是,在 chrome 和 safari 中,当有人输入http://frostriver.com(包括 ' http://' 在 url 字段中)他们得到一个页面找不到错误。
以下是一些示例:frostriver.com - 重定向, http ://frostriver.com -错误 , https ://frostriver.com - 错误, http ://www.frostriver.com - 重定向, https://www.frostriver .com - 有效。
这是我的 htaccess 文件:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.frostriver.com/$1 [R,L]
谢谢!特洛伊