linux云服务器apache下设置指定域名跳转到https

[复制链接] |主动推送
查看33 | 回复0 | 2024-9-11 18:03:54 | 显示全部楼层 |阅读模式
域名根目录下新建 .htaccess , 添加

RewriteEngine on

#不显示index.php

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

#指定80端口域名 lam.xx8.top 跳转到 https://lam.xx8.top
RewriteCond %{HTTP_HOST} ^lam.xx8\.top [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://lam.xx8.top/$1 [R,L]
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则