Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 1.27 KB

AX13.md

File metadata and controls

28 lines (18 loc) · 1.27 KB

Part after semicolon in meta refresh URL is ignored

For <meta http-equiv="Refresh" content="0;url=http://example.com/foo/bar;foo=bar?foo=bar&bar"> should load the URL http://example.com/foo/bar;foo=bar?foo=bar&bar after 0s. But the URL http://example.com/foo/bar is loaded instead.

Workaround: surround the URL with quotes: <meta http-equiv="Refresh" content="0;url='http://example.com/foo/bar;foo=bar?foo=bar&bar'">

TODO: test if it's the case for HTTP header Refresh: 0;url=http://example.com/foo/bar;foo=bar?foo=bar&bar

Tags

  • header
  • url

Applications

  • ✅ IE 10
  • ❎ Firefox
  • ❎ Opera
  • ❎ Chrome
  • ❎ Safari

See also