从www重定向。到根域(没有www。)

时间:2017-08-02 04:04:57

标签: javascript php jquery html .htaccess

你如何强制根域使用?我想知道如何在

中做到这一点
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

<?php header('Location: https://example.com'); ?> 

但这些都不适用于我想要的东西。 多种方法都不错!

1 个答案:

答案 0 :(得分:1)

确保您的htaccess重写正常。

在你的htaccess上使用它

RewriteEngine On
RewriteBase /
Rewritecond %{HTTP_HOST} ^www\.yoursite\.com$ [NC]
RewriteRule ^(.*)$ https://yoursite.com/$1 [R=301,L]