如何使用 .htaccess 或 PHP 将动态 URL 转发到 twitter?

发布于 2024-11-10 03:40:00 字数 443 浏览 0 评论 0原文

我需要重写一个动态URL。内容 myurlmytext 始终不同,应插入 Twitter 字符串中的“text”和“url”中。

这就是字符串:

http://example.com/share/?myurl=http%3A%2F%2Fwww.example.com&mytext=helloworld
   /* forward to: */
http://twitter.com/intent/tweet?related=Example%3Aname&text=helloworld&url=http%3A%2F%2Fwww.example.com&via=example

它是如何制作的? (我浏览了 .htaccess 建议,但找不到针对我的具体问题的解决方案。)

I need to rewrite a dynamic URL. The content myurl and mytext is always different and should be insert in the "text" and "url" from the Twitter string.

This is the string:

http://example.com/share/?myurl=http%3A%2F%2Fwww.example.com&mytext=helloworld
   /* forward to: */
http://twitter.com/intent/tweet?related=Example%3Aname&text=helloworld&url=http%3A%2F%2Fwww.example.com&via=example

How can that be made? (I browsed the .htaccess suggestions but couldn't find a solution for my specific problem.)

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

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

发布评论

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

评论(2

你丑哭了我 2024-11-17 03:40:00

你们的服务器支持PHP吗?

您可以将类似以下内容放入 PHP 文件中:

Header("Location: http://twitter.com/intent/tweet?related=Example%3Aname&text=$_GET['mytext']&url=$_GET['myurl']&via=example");

Does your server support PHP?

You could just put something like the following in a PHP file:

Header("Location: http://twitter.com/intent/tweet?related=Example%3Aname&text=$_GET['mytext']&url=$_GET['myurl']&via=example");
月朦胧 2024-11-17 03:40:00

用rewrite Rules来处理会更高效。

RewriteEngine On
RewriteCond %{QUERY_STRING}  ^myurl=(.*)&mytext=(.*)$
RewriteRule ^(.*)$ http://twitter.com/intent/tweet?related=Example%3Aname&text=%2&url=%1&via=example [R,L]

如果您希望这是永久重定向,请将 R 替换为 R=301。

使用永久重定向,这些链接将始终由浏览器重定向,并且如果需要,您的服务器将必须处理更少的流量。

It will be more efficient to handle it with rewrite Rules.

RewriteEngine On
RewriteCond %{QUERY_STRING}  ^myurl=(.*)&mytext=(.*)$
RewriteRule ^(.*)$ http://twitter.com/intent/tweet?related=Example%3Aname&text=%2&url=%1&via=example [R,L]

If you want this to be permanent redirect then replace R with R=301.

With permanent redirects , these links will always be redirected by browser and your server will have to deal with less traffic if that is desired.

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