gpt4 book ai didi

apache - 短网址和预览数据

转载 作者:bug小助手 更新时间:2023-10-28 01:29:34 26 4
gpt4 key购买 nike

我正在使用以下规则来生成短网址,

RewriteCond %{HTTP_HOST} ^(www\.)?domain2\.com$ [NC]
RewriteRule ^ http://maindomain.com/shortener%{REQUEST_URI} [L,NE]

example of the short url domain2.com/j3

它将被重定向到

http://maindomain.com/shortener/j3

然后它会点击实际的 url

http://maindomain.com/web/article/section/192392

现在的问题是,当我在推特上分享短网址时,它不会给你私有(private)图像或数据,

这里有任何建议调整重写规则或其逻辑本身需要调整

最佳答案

尝试将其减少为一个重定向:

RewriteCond %{HTTP_HOST} ^(?:www\.)?shortdomain\.com$ [NC]
RewriteRule ^(?!shortener/).+ shortener/$0 [NS,L]

然后您的缩短代码应该正常进行查找,但在重定向中包含 maindomain.com,例如在 PHP 中,这将如下所示:

header("Location: http://maindomain.com/$expanded_path", true, 301);

这假设您的短域只是您的主域的别名,因此它们具有相同的代码库。

关于apache - 短网址和预览数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40611945/

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