gpt4 book ai didi

php - .htaccess 将子域重定向到 ssl 站点

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

我想让我的网站http://subdomain.domain.com重定向到另一个外部 SSL 加密域 https://subdomain.external.com , 同时保留浏览栏中的原始地址。据我所知,使用 CNAME 可以很容易地做到这一点,但问题是它重定向到没有 SSL 加密的外部链接。

有人告诉我这可以通过 .htaccess 文件来完成,该文件现在具有以下内容:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress

你能帮我知道我应该如何修改 .htaccess 文件以满足我的要求吗?非常感谢!

胡安

最佳答案

如果你想用 PHP 来做:

$redirect = "https://www.ssl.com".$_SERVER['REQUEST_URI'];
header("Location: $redirect");
exit;

然后您必须通过 .htaccess 将所有请求路由到此 PHP 文件:

RewriteEngine on
RewriteRule ^([^.]+)$ index.php [QSA]

关于php - .htaccess 将子域重定向到 ssl 站点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31056481/

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