Closed
Bug 284226
Opened 20 years ago
Closed 20 years ago
Mozilla 1.8b1's about: link is 404.
Categories
(www.mozilla.org :: General, defect)
www.mozilla.org
General
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: u12624, Unassigned)
References
()
Details
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.8b) Gecko/20050217 Build Identifier: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.8b) Gecko/20050217 The "Mozilla 1.8b" link in the about page points to the wrong URL. Reproducible: Always Steps to Reproduce: 1. In Mozilla 1.8b1 click "Help". 2. Click "About Mozilla". 2. Click on the big "Mozilla 1.8b" link. Actual Results: Get "404: File Not Found /releases/mozilla1.8b We are sorry, the file you requested could not be found." when accessing <http://www.mozilla.org/releases/mozilla1.8b>. Expected Results: Should have shown <http://www.mozilla.org/releases/mozilla1.8b1/>. Please create <http://www.mozilla.org/releases/mozilla1.8b> and auto redirect it to <http://www.mozilla.org/releases/mozilla1.8b1/>.
Comment 1•20 years ago
|
||
justdave, would the following work: RewriteEngine On RewriteRule ^mozilla1.8b$ http://www.mozilla.org/releases/mozilla1.8b1/ [R=302,L] I'm afraid you you get a circle with that rule. In fact, I'm pretty sure...
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 2•20 years ago
|
||
Yeah, that'll work, and no, you wouldn't get a loop because of the $ on the end. If there's anything after the b the rule won't match.
Comment 3•20 years ago
|
||
Cool, checked in. Reporter, could you check in about 30 minutes if the (temporary, 302) redirect works?
Status: NEW → RESOLVED
Closed: 20 years ago
Resolution: --- → FIXED
This doesn't look like it worked. I think you should just use a redirect.
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Comment 5•20 years ago
|
||
I fixed it again: <http://cvs-www.mozilla.org/webtools/bonsai/cvslog.cgi?file=mozilla-org/html/releases/.htaccess>
Status: REOPENED → RESOLVED
Closed: 20 years ago → 20 years ago
Resolution: --- → FIXED
<http://www.mozilla.org/releases/mozilla1.8b/> is redirected but that's not the link on the "about:" page. <http://www.mozilla.org/releases/mozilla1.8b> still gives the user a 404.
Comment 7•20 years ago
|
||
I was told <http://www.mozilla.org/releases/mozilla1.8b/> was in the about page.
Comment 8•20 years ago
|
||
Ugh, you are right. It should become: RedirectMatch permanent ^mozilla1.8b/?$ http://www.mozilla.org/releases/mozilla1.8b1/ I guess. Waiting for justdave to verify that.
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
If you redirect the thing without the slash it should be fine.
Comment 10•20 years ago
|
||
Done that. Works. Fixed.
Status: REOPENED → RESOLVED
Closed: 20 years ago → 20 years ago
Resolution: --- → FIXED
Updated•16 years ago
|
Product: mozilla.org → Websites
Updated•12 years ago
|
Component: www.mozilla.org → General
Product: Websites → www.mozilla.org
You need to log in
before you can comment on or make changes to this bug.
Description
•