你如何强制根域使用?我想知道如何在
中做到这一点html, php, Javascript, .htaccess,jQuery, ajax.
我知道元刷新
<meta http-equiv="refresh" content="0; url=http://example.com/" />
<body onload="window.location.href = 'your URL';"></body>
<?php header('Location: https://example.com'); ?>
但这些都不适用于我想要的东西。 多种方法都不错!
答案 0 :(得分:1)
确保您的htaccess重写正常。
在你的htaccess上使用它
RewriteEngine On
RewriteBase /
Rewritecond %{HTTP_HOST} ^www\.yoursite\.com$ [NC]
RewriteRule ^(.*)$ https://yoursite.com/$1 [R=301,L]