如何使用 .htaccess 或 PHP 将动态 URL 转发到 twitter?
我需要重写一个动态URL。内容 myurl
和 mytext
始终不同,应插入 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你们的服务器支持PHP吗?
您可以将类似以下内容放入 PHP 文件中:
Does your server support PHP?
You could just put something like the following in a PHP file:
用rewrite Rules来处理会更高效。
如果您希望这是永久重定向,请将 R 替换为 R=301。
使用永久重定向,这些链接将始终由浏览器重定向,并且如果需要,您的服务器将必须处理更少的流量。
It will be more efficient to handle it with rewrite Rules.
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.