English 中文(简体)
Auto redirect httpsite url to https in cpanel
原标题:Auto redirect http site url to https in cpanel

将该网站的url网站转至https.for this i upload .htaccess file in my cpanl public_html fundamentalDirectory。 档案编码

RewriteEngine On  
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://sitename.in/$1 [R,L]

在我担任该档案的东道主之后,它也没有将我的网址转至礼宾处。

最佳回答

我在网站索引页上添加了以下编码线:

if($_SERVER["HTTPS"] != "on")
{
header("Location: https://" . $_SERVER["HTTP_HOST"] . $_SERVER["REQUEST_URI"]);
exit();
}

之后,该站点被转往https链接

问题回答

i am writing this answer too late but currently its working fine. So try to do it on your root directory .htaccess file.

# Force SSL
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>

Note: It will work only if you have mod_rewrite installed on cpanel server, otherwise use php bases SSL redirect.

我只是修改了我的陈词网站答案的第一部分中的“htaccess”文档,将http://www.htaccess.un.org。 我没有必要修改指数页,而不必对我课以罚款。 感谢作者在我完成寻求安全证件移徙的工作。

My complete file .htaccess file looked like this for me. I suggest making a local copy as I broke my site a few times before I found the right answer for me here:

#RewriteCond %{HTTP_HOST} ^yoursite.com [NC]
#RewriteRule (.*) http://www.yoursite.com/$1 [R=301,L]

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

Options +FollowSymlinks

RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yoursite.com/$1 [R,L]




相关问题
How to set response filename without forcing "save as" dialog

I am returning a stream in some response setting the appropriate content-type header. The behavior I m looking for is this: If the browser is able to render content of the given content type then it ...

Which Http redirects status code to use?

friendfeed.com uses 302. bit.ly uses 301. I had decided to use 303. Do they behave differently in terms of support by browsers ?

Does HttpWebRequest send 200 OK automatically?

Background: I am implementing Paypal IPN handler. This great article on Paypal states that I am required to send a 200 OK back to Paypal after I read the response. The processing of IPN request is ...

Java HTTPAUTH

我试图把桌面应用程序连接起来,我是同D.icio.us api @ Delicious Alan书写的,简单地向他们提供我的用户名和密码,并请他把书记上写给我......。

Finding out where curl was redirected

I m using curl to make php send an http request to some website somewhere and have set CURLOPT_FOLLOWLOCATION to 1 so that it follows redirects. How then, can I find out where it was eventually ...

热门标签