重写 URL Apache

发布于 2024-12-08 14:06:38 字数 437 浏览 2 评论 0原文

我正在尝试重写 Apache 配置文件上的链接,使其看起来像内部链接,但实际上是外部链接。

我网站上的链接将如下所示,并且具有多个查询字符串。

http://www.mysite.com/myscript.asp?somevar=1&othervar=2

但是当点击时将被重写为:

http://www.othersite.com/script.asp?somevar=1&othervar=2

这是我到目前为止的位置(不工作):

RewriteRule ^myscript.asp?(.*)$ http://www.othersite.com/script.asp?(.*) [L]

任何人都可以让这个规则起作用吗?谢谢!

I’m attempting to rewrite a link on my Apache config file so that it looks like an internal link, but is actually external.

The link on my site will look like this, and have multiple querystrings.

http://www.mysite.com/myscript.asp?somevar=1&othervar=2

But when clicked will be rewritten as this:

http://www.othersite.com/script.asp?somevar=1&othervar=2

Here is where I am so far (not working):

RewriteRule ^myscript.asp?(.*)$ http://www.othersite.com/script.asp?(.*) [L]

Can anybody get this rule working? Thanks!

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

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

发布评论

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

评论(1

青芜 2024-12-15 14:06:38

我希望这会有所帮助:

RewriteRule ^myscript\.asp\?(.*)$ http://www.othersite.com/script.asp?$1 [L]

注意:问号(?)和点(.)在正则表达式中具有特殊含义,因此如果您想将它们用作无意义的字符\ 放在它们之前!

I hope this would be helpful:

RewriteRule ^myscript\.asp\?(.*)$ http://www.othersite.com/script.asp?$1 [L]

Note: question mark(?) and dot(.) have special meaning in reqular expresion, so if you want to use them as meaningless character put \ before them!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文