اس تھریڈ کو آرکائیوکیا گیا تھا۔
اگر آپ کو مدد کی ضرورت ہو تو براہ مہربانی نیا سوال پوچھیں۔
آرکائیو شدہ
Why won't firefox follow an HTML redirect on my company website?
I tried to follow several links from our internal network and the links try to redirect to an open network but all I see is the HTML. Firefox does not follow the redirect.
<meta http-equiv="REFRESH" content='0; URL="https://liteblue.usps.gov/humanresources/careers/home.shtml?"'> <title>USPS - Redirect to <a href="https://liteblue.usps.gov/humanresources/careers/home.shtml" rel="nofollow">https://liteblue.usps.gov/humanresources/careers/home.shtml</a>?</title>
I tried to follow several links from our internal network and the links try to redirect to an open network but all I see is the HTML. Firefox does not follow the redirect.
<html>
<head>
<META HTTP-EQUIV=REFRESH CONTENT='0; URL="https://liteblue.usps.gov/humanresources/careers/home.shtml?"'>
<title>USPS - Redirect to https://liteblue.usps.gov/humanresources/careers/home.shtml?</title>
</head>
<body onload="top.window.location.replace('https://liteblue.usps.gov/humanresources/careers/home.shtml?')">
</body>
</html>
تمام جوابات (1)
You can't nest quotes.
Leave out the quotes around the url
<meta content="0; URL=https://liteblue.usps.gov/humanresources/careers/home.shtml?" http-equiv="REFRESH"> <title>USPS - Redirect to https://liteblue.usps.gov/humanresources/careers/home.shtml?</title>