I don’t know if this will solve your issue, but there are some Concentric-related suggestions here, including a special plug-in linked at the bottom, just for Concentric customers.
Thanks,
I got it working. If anyone else is trying to get this working. Do not use the .htaccess file. But apparently the disable-canonical-redirects.php plug-in and the php code:
if(isset($_REQUEST['q'])) {
$_SERVER['REQUEST_URI'] = "/" . $_REQUEST["q"];
}else{
if (empty($_SERVER['QUERY_STRING'])) {
$_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'];
} else {
$_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'] . "?" .
$_SERVER['QUERY_STRING'];
}
}
[Please post code snippets between backticks or use the code button.]
added to the wp-settings.php file fixed the problem.
Bryan
You can check it out working here:
http://www.titleistassetmanagement.com/blog/
[sig moderated as per the Forum Rules]
If you would please mark this thread as “resolved” (drop-down menu in the right column) it would be appreciated. Helps everyone keep better track of whose issues are still outstanding. Thanks!