Created
April 16, 2013 13:38
-
-
Save iso100/5395958 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #added by Nevin Lyne - DoS protection against /entry/vote-ajax URL | |
| Redirect 403 /entry/vote-ajax | |
| RewriteEngine On | |
| RewriteBase / | |
| # For SLP Site | |
| RewriteCond %{HTTP_HOST} ^slp.pbinsight.com$ | |
| RewriteCond %{REQUEST_FILENAME} !slp/ | |
| RewriteRule ^(.*)$ slp/$1 | |
| RewriteCond %{HTTP_HOST} ^profiler.pbinsight.com$ | |
| RewriteCond %{REQUEST_FILENAME} !profiler/ | |
| RewriteRule ^(.*)$ slp/$1 | |
| # For New Hybrid Site | |
| RewriteCond %{HTTP_HOST} ^m.pbinsight.com$ | |
| RewriteCond %{REQUEST_FILENAME} !hybrid/webkit/ | |
| RewriteRule ^(.*)$ hybrid/webkit/$1 [NC,R] | |
| # For New Hybrid Site | |
| RewriteCond %{HTTP_HOST} ^(www\.)?pbinsight.com$ | |
| RewriteCond %{REQUEST_FILENAME} !hybrid/ | |
| RewriteRule ^(.*)$ hybrid/$1 | |
| # Hybrid Site with PB Styles | |
| RewriteCond %{HTTP_HOST} ^pb.pbinsight.com | |
| RewriteCond %{REQUEST_FILENAME} !hybrid_pb/ | |
| RewriteRule ^(.*)$ hybrid_pb/$1 | |
| RewriteCond %{HTTP_HOST} ^mapinfo.com$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_com/ | |
| RewriteRule ^(.*)$ mapinfo_com/$1 | |
| # Redirect MapInfoData.com to relevant section of pbinsight.com | |
| RewriteCond %{HTTP_HOST} ^(.*).mapinfodata.com$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com/products/data/ [NC,R] | |
| # For Australia Hybrid Site | |
| # ------------------------- | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.pbbusinessinsight.com.au$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com.au [R=301,L] | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.pbinsight.com.au$ | |
| RewriteCond %{REQUEST_FILENAME} !hybrid_au/ | |
| RewriteRule ^(.*)$ hybrid_au/$1 | |
| RewriteCond %{HTTP_HOST} ^pbinsight.com.au$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com.au/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.mapinfo.com.au$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_au/ | |
| RewriteRule ^(.*)$ mapinfo_au/$1 | |
| # The following URL is to support redirections | |
| RewriteCond %{HTTP_HOST} ^go.pbinsight.com$ | |
| RewriteCond %{REQUEST_FILENAME} !hybrid/ | |
| RewriteRule ^(.*)$ hybrid/$1 | |
| RewriteCond %{HTTP_HOST} ^www.mapinfo.com$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_com/ | |
| RewriteRule ^(.*)$ mapinfo_com/$1 | |
| RewriteCond %{HTTP_HOST} ^tickets.pbbusinessinsight.com$ | |
| RewriteRule ^(.*)$ http://goltickets.pb.com/$1 [NC,R] | |
| # AnysiteOnline | |
| RewriteCond %{HTTP_HOST} ^(www\.)?anysiteonline.com$ [NC] | |
| RewriteRule ^(.*)$ http://www.pb.com/software/Location-Intelligence-App/Predictive-Analytics/AnySite-Online.shtml [R=301,L] | |
| # Meridian Awards Site | |
| RewriteCond %{HTTP_HOST} ^meridian.pbinsight.com$ [NC] | |
| RewriteCond %{REQUEST_FILENAME} !minisites/meridian-awards/ | |
| RewriteRule ^(.*)$ minisites/meridian-awards/$1 [L] | |
| RewriteCond %{HTTP_HOST} ^(^.*)meridianawards.com$ [NC] | |
| RewriteCond %{REQUEST_FILENAME} !minisites/meridian-awards/ | |
| RewriteRule ^(.*)$ minisites/meridian-awards/$1 [L] | |
| # Brilliant Awards Site | |
| RewriteCond %{HTTP_HOST} ^ba.pbinsight.com$ [OR] | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbbrilliantawards.com$ | |
| RewriteCond %{REQUEST_FILENAME} !minisites/brilliant-awards/ | |
| RewriteRule ^(.*)$ minisites/brilliant-awards/$1 [L] | |
| RewriteCond %{HTTP_HOST} ^roadmap.pbinsight.com$ | |
| RewriteCond %{REQUEST_FILENAME} !minisites/roadmaps/ | |
| RewriteRule ^(.*)$ minisites/roadmaps/$1 [L] | |
| RewriteCond %{HTTP_HOST} ^voc.pbinsight.com$ | |
| RewriteCond %{REQUEST_FILENAME} !minisites/voc/ | |
| RewriteRule ^(.*)$ minisites/voc/$1 [L] | |
| RewriteCond %{HTTP_HOST} ^roadmap.pbbusinessinsight.com$ | |
| RewriteCond %{REQUEST_FILENAME} !minisites/roadmaps/ | |
| RewriteRule ^(.*)$ minisites/roadmaps/$1 [L] | |
| RewriteCond %{HTTP_HOST} ^(www\.)?pbbusinessinsight.com$ | |
| RewriteCond %{REQUEST_FILENAME} !hybrid/ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com/$1 [R=301,L] | |
| RewriteCond %{HTTP_HOST} ^www.pbbusinessinsight.net$ | |
| RewriteCond %{REQUEST_FILENAME} !hybrid/ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com/$1 [R=301,L] | |
| RewriteCond %{HTTP_HOST} ^www.pbbi.com$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com/$1 [R=301,L,NC] | |
| RewriteCond %{HTTP_HOST} ^pbbi.com$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com/$1 [R=301,L,NC] | |
| RewriteCond %{HTTP_HOST} ^www.pbbi.net$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com/$1 [R=301,L,NC] | |
| RewriteCond %{HTTP_HOST} ^www.pbbi.biz$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com/$1 [R=301,L,NC] | |
| RewriteCond %{HTTP_HOST} ^www.pbbi.org$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com/$1 [R=301,L,NC] | |
| # For Dev / Sandbox Site | |
| RewriteCond %{HTTP_HOST} dev.mapinfogroup1.com | |
| RewriteCond %{REQUEST_FILENAME} !dev/ | |
| RewriteRule ^(.*)$ dev/$1 | |
| # For Media Library Site | |
| RewriteCond %{HTTP_HOST} media.pbinsight.com | |
| RewriteCond %{REQUEST_FILENAME} !media/ | |
| RewriteRule ^(.*)$ media/$1 | |
| # For Resources | |
| RewriteCond %{HTTP_HOST} resources.mapinfogroup1.com | |
| RewriteCond %{REQUEST_FILENAME} !resources/ | |
| RewriteRule ^(.*)$ global-resources/$1 | |
| RewriteCond %{HTTP_HOST} resources.pbinsight.com | |
| RewriteCond %{REQUEST_FILENAME} !global-resources/ | |
| RewriteRule ^(.*)$ global-resources/$1 | |
| # For France Site | |
| RewriteCond %{HTTP_HOST} ^(www\.)?pbmapinfo.(eu|fr)$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.eu/fr/ [NC,R=301] | |
| RewriteCond %{HTTP_HOST} ^(www\.)?(pbbi|pbinsight|mapinfo).fr$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.eu/fr/ [NC,R=301] | |
| # For MapInfo UK | |
| # Revised per http://goltickets.pb.com/admin.php?pg=request&reqid=18970 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.mapinfo.co.uk$ | |
| RewriteRule ^(.*)$ http://www.pitneybowes.co.uk/software/location-intelligence/mapinfo-suite/ | |
| # For Download Site | |
| RewriteCond %{HTTP_HOST} dl.mapinfogroup1.com | |
| RewriteCond %{REQUEST_FILENAME} !dl/ | |
| RewriteRule ^(.*)$ dl/$1 | |
| # For Hybrid Site | |
| RewriteCond %{HTTP_HOST} ^hybrid.mapinfogroup1.com | |
| RewriteCond %{REQUEST_FILENAME} !hybrid/ | |
| RewriteRule ^(.*)$ hybrid/$1 | |
| # For pbbusinessinsight.com Site | |
| RewriteCond %{HTTP_HOST} pbbi.mapinfogroup1.com | |
| RewriteCond %{REQUEST_FILENAME} !pbbi/ | |
| RewriteRule ^(.*)$ pbbi/$1 | |
| # For pbbusinessinsight.co.kr Korean sites | |
| RewriteCond %{HTTP_HOST} ^korea.mapinfogroup1.com$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_kr/ | |
| RewriteRule ^(.*)$ pbbi_kr/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.pbbusinessinsight.co.kr$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_kr/ | |
| RewriteRule ^(.*)$ pbbi_kr/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.pbbusinessinsight.kr$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_kr/ | |
| RewriteRule ^(.*)$ pbbi_kr/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.pbinsight.co.kr$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_kr/ | |
| RewriteRule ^(.*)$ pbbi_kr/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.pbinsight.kr$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_kr/ | |
| RewriteRule ^(.*)$ pbbi_kr/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.pbbi.co.kr$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_kr/ | |
| RewriteRule ^(.*)$ pbbi_kr/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.pbbi.kr$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_kr/ | |
| RewriteRule ^(.*)$ pbbi_kr/$1 | |
| # For pbbusinessinsight.co.jp Japan site | |
| RewriteCond %{HTTP_HOST} www.pbbusinessinsight.jp | |
| #RewriteCond %{REQUEST_FILENAME} !pbbi_jp/ | |
| RewriteRule ^(.*)$ http://www.mapinfo.co.jp/location/integration.html [NC,R=301] | |
| # For pbbusinessinsight.com.cn China site | |
| RewriteCond %{HTTP_HOST} ^china.mapinfogroup1.com$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_cn/ | |
| RewriteRule ^(.*)$ pbbi_cn/$1 | |
| RewriteCond %{HTTP_HOST} ^www.pbbusinessinsight.com.cn$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_cn/ | |
| RewriteRule ^(.*)$ pbbi_cn/$1 | |
| RewriteCond %{HTTP_HOST} ^pbbusinessinsight.com.cn$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_cn/ | |
| RewriteRule ^(.*)$ pbbi_cn/$1 | |
| # For pbbusinessinsight.com.tw Taiwan site | |
| RewriteCond %{HTTP_HOST} ^taiwan.mapinfogroup1.com$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_tw/ | |
| RewriteRule ^(.*)$ pbbi_tw/$1 | |
| RewriteCond %{HTTP_HOST} ^www.pbbusinessinsight.com.tw$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_tw/ | |
| RewriteRule ^(.*)$ pbbi_tw/$1 | |
| # For Finland Interim Site | |
| RewriteCond %{HTTP_HOST} ^finland.mapinfogroup1.com$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_fi/ | |
| RewriteRule ^(.*)$ pbbi_fi/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbbusinessinsight.fi$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_fi/ | |
| RewriteRule ^(.*)$ pbbi_fi/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbbi.fi | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_fi/ | |
| RewriteRule ^(.*)$ pbbi_fi/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbinsight.fi | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_fi/ | |
| RewriteRule ^(.*)$ pbbi_fi/$1 | |
| # For Arab Emirates Interim Site | |
| RewriteCond %{HTTP_HOST} ^ae.mapinfogroup1.com$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_ae/ | |
| RewriteRule ^(.*)$ pbbi_ae/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbbi.ae$ [L] | |
| RewriteRule ^(.*)$ http://www.pbinsight.com | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbbusinessinsight.ae$ [L] | |
| RewriteRule ^(.*)$ http://www.pbinsight.com | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbinsight.ae$ [L] | |
| RewriteRule ^(.*)$ http://www.pbinsight.com | |
| # For Sweden Interim Site | |
| RewriteCond %{HTTP_HOST} ^sweden.mapinfogroup1.com$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_se/ | |
| RewriteRule ^(.*)$ pbbi_se/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbinsight.se$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_se/ | |
| RewriteRule ^(.*)$ pbbi_se/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbbi.se$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_se/ | |
| RewriteRule ^(.*)$ pbbi_se/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbbusinessinsight.se$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_se/ | |
| RewriteRule ^(.*)$ pbbi_se/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)mapinfo.se$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.se | |
| # For Hong Kong Interim Site | |
| RewriteCond %{HTTP_HOST} ^www.pbbusinessinsight.hk$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_hk/ | |
| RewriteRule ^(.*)$ pbbi_hk/$1 | |
| RewriteCond %{HTTP_HOST} ^www.pbbi.hk | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_hk/ | |
| RewriteRule ^(.*)$ pbbi_hk/$1 | |
| # For Brazil Interim Site | |
| RewriteCond %{HTTP_HOST} ^brazil.mapinfogroup1.com$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_br/ | |
| RewriteRule ^(.*)$ pbbi_br/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbinsight.com.br$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_br/ | |
| RewriteRule ^(.*)$ pbbi_br/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)mapinfo.com.br$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com.br | |
| # For Mexico Site | |
| RewriteCond %{HTTP_HOST} ^(^.*)mapinfo.com.mx$ | |
| RewriteRule ^(.*)$ http://latam.pbinsight.com/ [R=301] | |
| # For Centrus Site | |
| RewriteCond %{HTTP_HOST} ^(^.*)centrus.com$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com/products | |
| RewriteCond %{HTTP_HOST} ^centrus.com$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com/products | |
| # For Canada Site | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbinsight.ca$ | |
| RewriteRule ^(.*)$ http://www.pb.com/software [NC,R=301,L] | |
| # Commented out old subdirectory redirect | |
| #RewriteCond %{HTTP_HOST} ^(^.*)pbinsight.ca$ | |
| #RewriteCond %{REQUEST_FILENAME} !mapinfo_ca/ | |
| #RewriteRule ^(.*)$ mapinfo_ca/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbbi.ca$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_ca/ | |
| RewriteRule ^(.*)$ mapinfo_ca/$1 | |
| # For Russia Interim Site | |
| # Redirected to co.uk per ticket 17878 from Adam Sanders | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbinsight\.ru$ [OR] | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbbusinessinsight\.ru$ [OR] | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbbi\.ru$ | |
| RewriteRule ^(.*)$ http://www.pitneybowes.co.uk/software [NC,R=301,L] | |
| # For Spain Interim Site | |
| RewriteCond %{HTTP_HOST} ^spain.mapinfogroup1.com$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_es/ | |
| RewriteRule ^(.*)$ pbbi_es/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.pbinsight.es$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_es/ | |
| RewriteRule ^(.*)$ pbbi_es/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbbi.es$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_es/ | |
| RewriteRule ^(.*)$ pbbi_es/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.pbbusinessinsight.es$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_es/ | |
| RewriteRule ^(.*)$ pbbi_es/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)mapinfo.es$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.es | |
| #For Italy Interim Site | |
| RewriteCond %{HTTP_HOST} ^italy.mapinfogroup1.com$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_it/ | |
| RewriteRule ^(.*)$ pbbi_it/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.pbinsight.it$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_it/ | |
| RewriteRule ^(.*)$ pbbi_it/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbbi.it$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_it/ | |
| RewriteRule ^(.*)$ pbbi_it/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.pbbusinessinsight.it$ | |
| RewriteCond %{REQUEST_FILENAME} !pbbi_it/ | |
| RewriteRule ^(.*)$ pbbi_it/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)mapinfo.it$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.it | |
| # #################### # | |
| # Legacy MapInfo Sites # | |
| # #################### # | |
| # For MapInfo India Site | |
| # For India Interim Site | |
| RewriteCond %{HTTP_HOST} ^(.+)?pbinsight.co.in$ | |
| RewriteRule ^(.*)$ http://www.mapinfo.co.in | |
| RewriteCond %{HTTP_HOST} ^(.+)?pbbi.co.in$ | |
| RewriteRule ^(.*)$ http://www.mapinfo.co.in | |
| RewriteCond %{HTTP_HOST} ^(.+)?mapinfo.co.in$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_in/ | |
| RewriteRule ^(.*)$ mapinfo_in/$1 | |
| # For MapInfo Hong Kong Site | |
| RewriteCond %{HTTP_HOST} ^www.mapinfo.hk$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_hk/ | |
| RewriteRule ^(.*)$ mapinfo_hk/$1 | |
| RewriteCond %{HTTP_HOST} ^mi-hongkong.mapinfogroup1.com$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_hk/ | |
| RewriteRule ^(.*)$ mapinfo_hk/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.mapinfo.com.hk$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_hk/ | |
| RewriteRule ^(.*)$ mapinfo_hk/$1 | |
| RewriteCond %{HTTP_HOST} ^mapinfo.com.hk$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_hk/ | |
| RewriteRule ^(.*)$ mapinfo_hk/$1 | |
| # For MapInfo Netherlands Site | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.mapinfo.nl$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_nl/ | |
| RewriteRule ^(.*)$ http://www.pbinsight.nl | |
| # For MapInfo Taiwan Site | |
| RewriteCond %{HTTP_HOST} ^mi-taiwan.mapinfogroup1.com$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_tw/ | |
| RewriteRule ^(.*)$ mapinfo_tw/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.mapinfo.com.tw$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_tw/ | |
| RewriteRule ^(.*)$ mapinfo_tw/$1 | |
| RewriteCond %{HTTP_HOST} ^mapinfo.com.tw$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_tw/ | |
| RewriteRule ^(.*)$ mapinfo_tw/$1 | |
| # For MapInfo Singapore Site | |
| RewriteCond %{HTTP_HOST} ^mi-singapore.mapinfogroup1.com$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_sg/ | |
| RewriteRule ^(.*)$ mapinfo_sg/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.mapinfo.com.sg$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_sg/ | |
| RewriteRule ^(.*)$ mapinfo_sg/$1 | |
| RewriteCond %{HTTP_HOST} ^mapinfo.com.sg$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_sg/ | |
| RewriteRule ^(.*)$ mapinfo_sg/$1 | |
| # For MapInfo Japan Site | |
| RewriteCond %{HTTP_HOST} ^mi-japan.mapinfogroup1.com$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_jp/ | |
| RewriteRule ^(.*)$ mapinfo_jp/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.mapinfo.jp$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_jp/ | |
| RewriteRule ^(.*)$ mapinfo_jp/$1 | |
| RewriteCond %{HTTP_HOST} ^mapinfo.jp$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_jp/ | |
| RewriteRule ^(.*)$ mapinfo_jp/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.mapinfo.co.jp$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_jp/ | |
| RewriteRule ^(.*)$ mapinfo_jp/$1 | |
| RewriteCond %{HTTP_HOST} ^mapinfo.co.jp$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_jp/ | |
| RewriteRule ^(.*)$ mapinfo_jp/$1 | |
| # For MapInfo China Site | |
| RewriteCond %{HTTP_HOST} ^mi-china.mapinfogroup1.com$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_cn/ | |
| RewriteRule ^(.*)$ mapinfo_cn/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)\.mapinfo.com.cn$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_cn/ | |
| RewriteRule ^(.*)$ mapinfo_cn/$1 | |
| RewriteCond %{HTTP_HOST} ^mapinfo.com.cn$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_cn/ | |
| RewriteRule ^(.*)$ mapinfo_cn/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbinsight.com.cn$ | |
| RewriteCond %{REQUEST_FILENAME} !mapinfo_cn/ | |
| RewriteRule ^(.*)$ mapinfo_cn/$1 | |
| # Domain Redirects | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbinsight.com.sg$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com.au | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbbi.com.sg$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com.au | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbinsight.com.my$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com.au | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbbi.com.my$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com.au | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbinsight.co.id$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com.au | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbbi.co.id$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com.au | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbinsight.com.ph$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com.au | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbbi.com.ph$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com.au | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbinsight.com.vn$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com.au | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbbi.com.vn$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com.au | |
| # MapInfo Germany | |
| RewriteCond %{HTTP_HOST} ^(^.*)mapinfo.de$ | |
| RewriteRule ^gis-tage$ http://gw.vtrenz.net/?Q4X99PXIO7 [NC,L] | |
| #PBBI Germany | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbinsight.de$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.eu/ger/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbinsight.ch$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.eu/ger/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbinsight.at$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.eu/ger/$1 | |
| RewriteCond %{HTTP_HOST} ^(^.*)mapinfo.de$ | |
| RewriteRule ^(.*)? http://www.pbinsight.eu/ger/$1 | |
| # OnePage Site | |
| RewriteCond %{HTTP_HOST} ^mideast.pbinsight.com | |
| RewriteRule ^(.*)$ http://me.pbinsight.com [NC,R=301,L] | |
| RewriteCond %{HTTP_HOST} ^mideast-en.pbinsight.com | |
| RewriteRule ^(.*)$ http://me-en.pbinsight.com [NC,R=301,L] | |
| RewriteCond %{HTTP_HOST} ^(^.*)onepage.pbinsight.com [OR] | |
| RewriteCond %{HTTP_HOST} ^me.pbinsight.com [OR] | |
| RewriteCond %{HTTP_HOST} ^me-en.pbinsight.com [OR] | |
| RewriteCond %{HTTP_HOST} ^insurance.pbinsight.com | |
| RewriteCond %{REQUEST_FILENAME} !onepage/ | |
| RewriteRule ^(.*)$ onepage/$1 | |
| # Geosk Redirects | |
| #RewriteCond %{HTTP_HOST} ^(^.*)geosk.com$ | |
| #RewriteRule ^(.*)$ http://geosk.pbbi.com [NC,R=301,L] | |
| # PBOndemand | |
| RewriteCond %{HTTP_HOST} ^(^.*)pbondemand.com$ | |
| RewriteRule ^(.*)$ http://www.pbinsight.com/products/ondemand-offerings2/ | |
| # Support for Image Maps | |
| AddHandler imap-file map |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment