Jharper_43334
Jul 03, 2012Nimbostratus
Redirect SharePoint 2007 subsite to 2010 almost working (using iRules)
I'm trying avoid a full cutover of all sites to SharePont 2010 from 2007. I've been experimenting with ProxyPass and other iRules to redirect an individual site from 2007 to 2010. In all iRule test cases, most everything except for the Ribbon and the Site Action dropdown are working. Has anyone been successful with this? If so, what's the secret?
F5 Version 9.4.3
Example iRule: (Mostly Working Except for Ribbon)
when HTTP_REQUEST {
if { [string tolower [HTTP::path]] starts_with "/IT" } {
Rewrite host header value and select pool
HTTP::header replace Host teams2010.hbk.com
pool WSS_TeamsFarm_Pool
} else {
pool SP2010_Pool } }