所有浏览器htaccess重定向

时间:2018-09-18 17:42:26

标签: html .htaccess https

我正在尝试将所有流量引向https://www。我知道这是一个涉及多个领域的主题,但是我已经尝试了每种方法,但是在所有浏览器上重定向都仍然存在问题。以下是我正在使用的一种,它可以在Safari和IE上运行,但在Chrome或Firefox上根本无法运行。我尝试了其他化身,其中一些使我的网站崩溃了。

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example.com$
RewriteRule (.*) https://www.example.com/$1 [R=301,L]
</IfModule>



ErrorDocument 400 http://www.example.com/404page.html
ErrorDocument 401 http://www.example.com/404page.html
ErrorDocument 403 http://www.example.com/404page.html
ErrorDocument 404 http://www.example.com/404page.html
ErrorDocument 500 http://www.example.com/404page.html

订购允许,拒绝 所有人都否认

我也尝试过:

RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

非常感谢您的帮助。

0 个答案:

没有答案