如何为zeus服务器进行url重写?

发布于 2024-09-19 19:10:04 字数 106 浏览 2 评论 0原文

我的网站位于 zeus 服务器中。现在我需要使用 https 将我的网站重定向到安全网站。我发现 zeus 服务器的 url 重写代码不同。如何使用 url 重写代码?任何帮助将不胜感激。提前致谢。

My site is in zeus server. Now i need to redirect my site to secure site using https. I found that url rewriting code different for zeus server. How do i use url rewriting code? Any help will be appreciated. Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雨落星ぅ辰 2024-09-26 19:10:04

您需要编写一个 Zeus TrafficScript 规则 来实现此目的。我建议您阅读 http://knowledgehub.zeus.com/media/4.1 上的手册/trafficscript_manual.pdf 了解更多信息。

您最有可能使用的是这样的 http.changeSite() 方法,将用户发送到您网站的 SSL 版本

if( http.getHostHeader() == "www.mysite.com" ) {
http.changeSite( "https://www.mysite.com" );
}

You will need to write a Zeus TrafficScript rule for achieving this. I suggest you read the manual at http://knowledgehub.zeus.com/media/4.1/trafficscript_manual.pdf to understand more about this.

What you're most likely to use is the http.changeSite() method like this to send the user to SSL version of your site

if( http.getHostHeader() == "www.mysite.com" ) {
http.changeSite( "https://www.mysite.com" );
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文