已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题吗?**通过editing this post添加详细信息并阐明问题。
三个月前关门了。
Improve this question
我想改进方法,而不是使用HTTP
我们的方法是:
<VirtualHost *:80>
ServerName example.com
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example.com
RewriteRule ^(.*)$ https://example.com/$1?referer_id=186 [QSA]
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
1条答案
按热度按时间hxzsmxv21#
在https虚拟主机中,添加以下内容:
RewriteCond
:当“referer_id=186”不存在时匹配RewriteRule
:将“referer_id=186”添加到重定向。QSA
:将保留任何已存在的查询字符串参数,因此添加了186部分,但不删除其他已存在的参数。