gpt4 book ai didi

.htaccess - 使用 .htaccess 将 www URL 重定向到 https 的非 www

转载 作者:太空宇宙 更新时间:2023-11-03 13:04:38 25 4
gpt4 key购买 nike

请为我提供 .htaccess 语法以执行以下操作:

  1. http 重定向到 https
  2. 重定向自 https://www.domain.com.uk https://domain.com.uk

我尝试了以下方法,但没有用:

RewriteCond %{HTTP_HOST} ^www.(.*)

RewriteRule ^.*$ https://%1/$1 [R=301,L]

最佳答案

尝试将以下内容添加到域根文件夹中的 htaccess 文件中。

RewriteEngine on
RewriteBase /

#if not domain.com.uk then redirect to domaim.com.uk
RewriteCond %{HTTP_HOST} !^domain\.com\.uk$ [NC]
RewriteRule .* http://domain.com.uk%{REQUEST_URI} [L,R=301]

#if not https
RewriteCond %{HTTPS} off
#redirect to https
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

关于.htaccess - 使用 .htaccess 将 www URL 重定向到 https 的非 www,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8804696/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com