首页 > 教程 >

织梦网站apache服务器http301重定向到https, 并且不带www跳转到带www

2023-02-25教程围观

简介用织梦做网站经常遇到需要http301重定向到https,Apache环境下,.htaccess伪静态让http301重定向到https,并且不带www跳转到带www方法.htaccess#开启伪静态RewriteEngineOn#http301重定向到https,并且不带www跳转到带wwwRewriteCond%{HTTP_HOST}^123.com[NC]RewriteRule^(.*)$h

  

用织梦做网站经常遇到需要http 301重定向到https,Apache环境下,.htaccess 伪静态让http 301重定向到https, 并且不带www跳转到带www方法

.htaccess

#开启伪静态RewriteEngine On#http 301重定向到https, 并且不带www跳转到带wwwRewriteCond %{HTTP_HOST} ^123.com [NC]RewriteRule ^(.*)$ https://www.123.com/$1 [L,R=301]RewriteCond %{SERVER_PORT} 80RewriteRule ^(.*)$ https://www.123.com/$1 [L,R=301]

上面3处123.com改成你自己的域名即可

 

下载链接:网站源码/小程序源码/网站模板下载

Tags: 网站 织梦 服务器 https www