我正在使用此.htaccess将文本和网址转发到Twitter:
RewriteEngine On
RewriteCond %{QUERY_STRING} ^mytxt=(.*)&myurl=(.*)$
RewriteRule ^(.*)$ http://twitter.com/intent/tweet?related=aprofile&text=%1&url=%2&via=myprofile [R,L]
只要字符串中没有#hash,它就可以正常工作。 (使用#hash它只返回403禁止。)
这是网址:http://www.example.com/twitter/?mytxt=hello+world+#randomhash&myurl=http://example.com
如何解决这个问题? 谢谢 迈克尔
答案 0 :(得分:1)
尝试使用#
符号的URL编码值。
http://www.example.com/twitter/?mytxt=hello+world+%23randomhash&myurl=http://example.com