gpt4 book ai didi

linux - 使用 htaccess .. 所有 url 都必须使用 www 重定向到 https

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:19:31 25 4
gpt4 key购买 nike

domain.com
www.domain.com/xyz
http://domain.com/xyz
http://www.domain.com/xyz
https://domain.com/xyz

必须使用 .htaccess (apache 2.4) 重定向到下面

https://www.domain.com/xyz

最佳答案

将此规则放入您的 DOCUMENT_ROOT/.htaccess 文件中:

RewriteEngine On

RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^ https://www.domain.com%{REQUEST_URI} [R=302,L,NE]

编辑: 使用 curl 命令行测试:

$> curl -I -k -A "Chrome" -L 'https://domain.com/'
HTTP/1.1 302 Found
Date: Wed, 25 Jun 2014 06:50:57 GMT
Server: Apache/2.4.7 (Ubuntu)
Location: https://www.domain.com/
Content-Type: text/html; charset=iso-8859-1

HTTP/1.1 200 OK
Date: Wed, 25 Jun 2014 06:51:00 GMT
Server: Apache/2.4.7 (Ubuntu)
Last-Modified: Thu, 19 Jun 2014 13:16:20 GMT
ETag: "7ac-4fc302ecafc5e"
Accept-Ranges: bytes
Content-Length: 1964
Vary: Accept-Encoding
Content-Type: text/html

关于linux - 使用 htaccess .. 所有 url 都必须使用 www 重定向到 https,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24387192/

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