仅在主页上将HTTP重定向到https

时间:2019-01-12 22:39:04

标签: .htaccess http redirect mod-rewrite https

我阅读了许多类似的问题,但没有找到解决方案。我只想在主页上将HTTP重定向到HTTPS。

  • http://example.comhttps://example.com

我对.htacces一无所知。

在这里您可以看到它的外观,它包含隐藏.php扩展名,使缓存过期并使www重定向到非www的代码。我在网上找到了以下示例:

## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType text/html "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 1 month"
</IfModule>
## EXPIRES CACHING ##


#AddHandler application/x-httpd-php54  .php54 .php
AddHandler application/x-httpd-php70 .php

RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.php [NC]
RewriteRule ^ %1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*?)/?$ $1.php [NC,L]

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

1 个答案:

答案 0 :(得分:1)

要仅将首页重定向到HTTPS(并规范化www子域),然后在.htaccess文件的顶部添加以下内容:

RewriteEngine On

RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+) [NC]
RewriteRule ^$ https://%1/ [R=302,L]

请注意,这是302(临时)重定向。仅在确定它可以正常工作以避免浏览器缓存问题时,才将其更改为301(永久)。

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

您还需要修改文件末尾的现有www到非www重定向,否则会将主页重定向回到HTTP。在HTTP到HTTPS重定向之后,也应立即将其移至.htaccess文件的顶部。

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

请注意,我将^(.*)$更改为^(.+)$以匹配1个或更多字符-从而避开了首页。您也可以根据需要将其简化为(.+)(即,删除锚点)。正则表达式默认是贪婪的,锚是多余的。

摘要

RewriteEngine On

# Only redirect homepage to HTTPS (and remove www subdomain)
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteCond %{HTTP_HOST} ^(?:www\.)?(.+) [NC]
RewriteRule ^$ https://%1/ [R=302,L]

# Remove www subdomain on other pages (HTTP only)
# >>> This is moved from the end of the htaccess file
RewriteCond %{HTTP_HOST} ^www\.(.+) [NC]
RewriteRule (.+) http://%1/$1 [R=302,L]

# Remainder of htaccess file....
:
:

清除浏览器缓存,并在确认运行正常后将302更改为301


旁边:如果需要,您可以删除文件后面出现的RewriteEngine指令。这是可选的,只需 一次即可。在mod_rewrite指令之前位于顶部是合乎逻辑的(但并非严格要求)。