搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

Some "Redirecting Pages" work And Another NOT

  • 6 回覆
  • 2 有這個問題
  • 6 次檢視
  • 最近回覆由 MoAzBaShA

more options

Some Pages Redirect me to another one, Firefox didn't Redirect me at many times and MSG still shown for me & NOTHING happened .

This is a snapshot of page which didn't load for me at Firefox but it is working at Another Browsers http://s5.postimage.org/eu2ov695j/Firefox_Issue.png

I uploaded two examples of two pages : Test.html didn't redirect and didn't loaded for me https://sites.google.com/site/pepep2011/Test.html?attredirects=0&d=1

Test2.html Redirected and Loaded for me https://sites.google.com/site/pepep2011/Test2.html?attredirects=0&d=1

Two Pages Maybe Load at your browser but Test.html Didn't work with me at Firefox but it is working at another Browser, Why ?????

Some Pages Redirect me to another one, Firefox didn't Redirect me at many times and MSG still shown for me & NOTHING happened . This is a snapshot of page which didn't load for me at Firefox but it is working at Another Browsers http://s5.postimage.org/eu2ov695j/Firefox_Issue.png I uploaded two examples of two pages : Test.html didn't redirect and didn't loaded for me https://sites.google.com/site/pepep2011/Test.html?attredirects=0&d=1 Test2.html Redirected and Loaded for me https://sites.google.com/site/pepep2011/Test2.html?attredirects=0&d=1 Two Pages Maybe Load at your browser but Test.html Didn't work with me at Firefox but it is working at another Browser, Why ?????

由 MoAzBaShA 於 修改

被選擇的解決方法

Start Firefox in Safe Mode to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).

  • Do not click the Reset button on the Safe mode start window or otherwise make changes.
從原來的回覆中察看解決方案 👍 0

所有回覆 (6)

more options

選擇的解決方法

Start Firefox in Safe Mode to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).

  • Do not click the Reset button on the Safe mode start window or otherwise make changes.
more options

I Started Firefox in Safe Mode But NOTHING happened

more options

It is a bit weird code.

Why is there an onload in addition to the meta tag refresh?
One of them should be sufficient.

<html><head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="1; url=http://www.mncourts.gov/publicaccess">
</head>
<body onload="location.replace('http://www.mncourts.gov/publicaccess'+document.location.hash)">
Redirecting you to http://www.mncourts.gov/publicaccess
</body></html>

Either of these should work:

<html><head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Redirecting</title>
</head>
<body onload="location.replace('http://www.mncourts.gov/publicaccess'+document.location.hash)">
Redirecting you to http://www.mncourts.gov/publicaccess
</body></html>

<html><head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Redirecting</title>
<meta http-equiv="refresh" content="2; url=http://www.mncourts.gov/publicaccess">
</head>
<body>
Redirecting you to http://www.mncourts.gov/publicaccess
</body></html>
more options

This two pages just for example and i got its code from Page source which I can't edit it this is a page on internet it is not mine and it is work by another browser

you asked me that Why is there an onload in addition to the meta tag refresh? My Answer : it is not my own page and I got source code from exist page, and Two pages Test.html & Test2.html contain same code (onload in addition to the meta tag refresh)

I hope you understand me thank you very much

more options

Do you have a link to an actual page where such a redirect isn't working?

more options

Thank you very much

The Problem was in My OS and I Recovered it and I have installed Firefox

Firefox work Well now

Thanks

由 MoAzBaShA 於 修改