Same problem here. If you have Firefox with the Greasemonkey add on you can add this script to at least browse trouble free. It doesn't work for posting though.
Code:
// ==UserScript==
// @name spcr
// @namespace none
// @include http://www.silentpcreview.com/*
// ==/UserScript==
(function() {
var scriptBefore = 'forums.silentpcreview.com'
var scriptAfter = 'www.silentpcreview.com/forums'
var xpath = "//a[contains(@href, scriptBefore)]";
var res = document.evaluate(xpath, document, null,
XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
var i, link;
for (i = 0; link = res.snapshotItem(i); i++) {
link.href = link.href.replace(scriptBefore, scriptAfter);
}
})();
// vim: set ts=2 sw=2 et :
Shamelessly copied and modified from
http://userscripts.org/scripts/show/6149