搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Link shortened Photobucket pictures don't show up correctly

  • 1 个回答
  • 1 人有此问题
  • 19 次查看
  • 最后回复者为 cor-el

more options

Basically, I used Google URL Shortener to shorten some URL's from Photobucket, but when I go to add them to the HTML on my page, instead of directly linking to the photo like they're supposed to, the links all link instead to the album page on Photobucket, causing the images to naturally break on my website. The photos will work properly if I don't shorten the URL, but I really would prefer the links to be shortened. The problem I'm running into doesn't happen on Chrome or Opera and seems Firefox exclusive, which is a pain as there are certain members of my website that do in fact use Mozilla Firefox.

On Chrome and Opera, the Photobucket links are correct and show up like this: http://i76.photobucket.com/albums/j27/DaBlackGoku13/055_SAKEDE.png However, on Firefox, they incorrectly show up like this, despite the fact my shortened link is the example above: http://s76.photobucket.com/user/DaBlackGoku13/media/055_SAKEDE.png.html

One of my shortened URL's look like this: http://goo.gl/3ZXVbv

Anyone have any ideas how to fix this?

Basically, I used Google URL Shortener to shorten some URL's from Photobucket, but when I go to add them to the HTML on my page, instead of directly linking to the photo like they're supposed to, the links all link instead to the album page on Photobucket, causing the images to naturally break on my website. The photos will work properly if I don't shorten the URL, but I really would prefer the links to be shortened. The problem I'm running into doesn't happen on Chrome or Opera and seems Firefox exclusive, which is a pain as there are certain members of my website that do in fact use Mozilla Firefox. On Chrome and Opera, the Photobucket links are correct and show up like this: http://i76.photobucket.com/albums/j27/DaBlackGoku13/055_SAKEDE.png However, on Firefox, they incorrectly show up like this, despite the fact my shortened link is the example above: http://s76.photobucket.com/user/DaBlackGoku13/media/055_SAKEDE.png.html One of my shortened URL's look like this: http://goo.gl/3ZXVbv Anyone have any ideas how to fix this?

所有回复 (1)

more options

See the discussion in this thread:

It seems to depend on the request header send.

It works if you (temporarily) set the network.http.accept.default to an empty string.

data:text/html,<img src='http://i76.photobucket.com/albums/j27/DaBlackGoku13/055_SAKEDE.png'>

The default accept header that Firefox sends doesn't work and redirects:

  • Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
http://i76.photobucket.com/albums/j27/DaBlackGoku13/055_SAKEDE.png
HTTP/1.1 302 Moved Temporarily
Location: http://s76.photobucket.com/albums/j27/DaBlackGoku13/055_SAKEDE.png
HTTP/1.1 302 Found
Location: http://s76.photobucket.com/user/DaBlackGoku13/media/055_SAKEDE.png.html

由cor-el于修改